how to write code for left outer join in SAs using datastep?
Answer Posted / aniruddha
Data left_outer;
merge emp(in=a) dept(in=b);
by deptno;
if a=1 and b=0;
run;
| Is This Answer Correct ? | 22 Yes | 8 No |
Post New Answer View All Answers
Name and describe few sas character functions that are used for data cleaning in brief.
What are the table names in oracle database...?
Explain what is SAS informats?
explain about data integrator metadata reports? : Sas-di
What does P-value signify about the statistical data?
Mention common programming errors committed in sas ?
what is null hypothesis? why do you consider that?
what can you learn from the sas log when debugging? : Sas programming
what is the difference between nodup and nodupkey options? : Sas programming
why is sas considered self-documenting? : Sas programming
What are types of transport files?
do you need to know if there are any missing values? : Sas programming
What commands are used in the case of including or excluding any specific variables in the data set?
In proc transpose and data step with arrays which one you pick?
Have you used macros? For what purpose you have used? : sas-macro