how to write code for left outer join in SAs using datastep?
Answer Posted / lakshmi
data left_join;
merge data1(in=a) data2(in=b);
by subjid;
if a;
run;
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
Enlist the functions performed by sas.
What can you learn from the SAS log when debugging?
what is intially documentation in sas?
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
What is substr function?
how do you want missing values handled? : Sas programming
describe how to adjust the performance of data integrator? : Sas-di
If money were no object, what would you like to do?
what is the difference between unique key and primary key? : Sas-di
How will you generate test data with no input data?
how are numeric and character missing values represented internally? : Sas programming
What areas of SAS are you most interested in?
How many ways to overcome a missing values???
What is the role of administrative users? : sas-grid-administration
Differentiate between proc means and proc summary.