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
What’s the difference between var b1 – b3 and var b1 — b3?
what are _numeric_ and _character_ and what do they do? : Sas programming
Difference between sum function and using “+” operator?
How to limit decimal places for variable using proc means?
Explain bmdp procedure?
What are the uses of sas?
Difference between SAS STATA & SPSS?
Explain what is data step?
What is the difference between match merge and one to one merge?
What is the difference between SAS functions and procedures?
How do you control the number of observations and/or variables read or written?
What are the data types that sas contain?
What is the difference between order and group variable in proc report?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What does P-value signify about the statistical data?