How would you code a merge that will keep only the
observations that have matches from both sets?
Answer Posted / naveen
data qqq;
merge aaa(in=a) bbb(in=b);
if a and b;
run;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
For what purpose would you use the RETAIN statement?
how do you debug and test your sas programs? : Sas programming
What sas features do you use to check errors and data validation?
What will calendar procedure do?
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?
How are numeric and character missing values represented internally?
what can you learn from the sas log when debugging? : Sas programming
what has been your most common programming mistake? : Sas programming
Difference between sum function and using “+” operator?
Explain the main difference between the sas procedures and functions? : Sas-administrator
Mention the category in which sas informats are placed?
What is the role of sas grid administrator? : sas-grid-administration
explain about data integrator metadata reports? : Sas-di
How to include or exclude specific variables in a data set?