how to write code for left outer join in SAs using datastep?
Answer Posted / raghava
proc sql;
select *
from one left join two
on one.X=two.X;
quit;
The above is code for lefjoin.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is slowly changing dimension? : Sas-di
What is the role of sas grid administrator? : sas-grid-administration
what are the categories that sas informats are used to the place the data? : Sas-administrator
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
what are the component of range? : Sas-bi
Name types of category in which SAS Informats are placed?
How can you create a macro variable with in data step? : sas-macro
what is study design in while working with SAS? what are screening variables in SAS?
What is proc sort?
what is hash files in sas and why we are using this one in sas?
Mention some common errors that are usually committed in sas programming.
For what purposes have you used sas macros? : sas-macro
Name any two sas spawners? : sas-grid-administration
what is the effect of the options statement errors=1? : Sas programming
What are the difference between ceil and floor functions in sas?