how to write code for left outer join in SAs using datastep?
Answer Posted / vk
Data Left_outer;
set data1(in=x) data2(in=y);
if x=0 and y=1;
run;
| Is This Answer Correct ? | 9 Yes | 12 No |
Post New Answer View All Answers
Define run-group processing?
what is study design in while working with SAS? what are screening variables in SAS?
what do the mod and int function do? What do the pad and dim functions do? : Sas programming
What are the five ways to do a table lookup in sas? : sas-grid-administration
What makes sas stand out to be the best over other data analytics tools?
Have you ever used the SAS Debugger?
What are the limitations for memory allocation for SAS variables
How do you specify the number of iterations and specific condition within a single do loop?
What is the difference between the proc sql and data step?
What areas of SAS are you most interested in?
how does sas handle missing values in functions? : Sas programming
What is factor analysis?
What is a macro routine?
Describe the ways in which you can create macro variables?
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?