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
In sas, what are the areas that you are most interested in? : sas-grid-administration
what is program data vector? : Sas-administrator
how does sas handle missing values in assignment statements? : Sas programming
For what purposes have you used sas macros? : sas-macro
How to limit decimal places for the variable using proc means?
Which command is used to save logs in the external file?
how many types prompting framework can be broken down to? : Sas-bi
how would you create multiple observations from a single observation? : Sas programming
Do you need to know if there are any missing values?
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
what is hash files in sas and why we are using this one in sas?
what is sas metadata repository? : Sas-bi
what is enterprise guide? What is the use of it? : Sas programming
Give an example where SAS fails to convert character value to numeric value automatically?
How long can a macro variable be? A token? : sas-macro