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 are the data types that sas contain?
What is the function of Stop statement in a SAS Program?
How would you identify a macro variable? : sas-macro
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
How does SAS handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, PROCs?
How do you define proc in sas? : sas-grid-administration
how could you generate test data with no input data? : Sas programming
what is the primary data source for the wrs? : Sas-bi
Can you execute macro within another macro? : sas-macro
Explain the special input delimiters used in sas programming.
what are the benefits of data integration? : Sas-di
Enlist the syntax rules followed in sas statements.
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
List out some key concept of SAS
What is the maximum length of the macro variable? : sas-macro