how can u join the two tables without using proc sql Joins
and nested queries ?
Answer Posted / sai
we can join two tables by using merge statement and also by
using two SET statements .
data one;
set two;
set three;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is auto call macro and how to create a auto call macro? What is the use of it? How to use it in sas with macros? : sas-macro
How to test the debugging in sas?
how can you put a "trace" in your program? : Sas programming
What is the difference between using drop = data set option in data statement and set statement?
Explain translate function?
Mention the category in which sas informats are placed?
what is change analysis in sas di ? : Sas-di
What are the features of base sas system?
what is null hypothesis? why do you consider that?
Mention what is SAS data set?
explain about sas business intelligence? : Sas-bi
What are SAS/ACCESS and SAS/CONNECT?
What are the statements in proc sql?
Difference between sum function and using “+” operator?
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?