Answer Posted / krishna
there is no proc merge
we can do by dataset block
syntax:
proc sort data=<dataset name>;
by <var>;
run;
data ab;
merge a b;
run;
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What does the trace option do?
what is data integration? : Sas-di
Which command is used to perform sorting in sas program?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
How many ways to overcome a missing values???
do you prefer proc report or proc tabulate? Why? : Sas programming
What are the data types in sas?
what are validation tools that are used in sas? : Sas-administrator
What are the statements in proc sql?
Give e an example of..
why is sas considered self-documenting? : Sas programming
How do you define proc in sas? : sas-grid-administration
what is PhaseIII, ODS, TLG, Macro and Proc in SAS
what is study design in while working with SAS? what are screening variables in SAS?
What is the difference between INPUT and INFILE ?