Edited...
How would I in a Proc SQL statement maintain this datastep: Also, I want to obtain a cartesian product so there is a deviation form datastep but it will be controlled by a where clause in the Proc SQl Code.
data want;
merge dset_1 dset_2;
by "some common variable properly sorted";
if dset_1.var1 = dset_2.var1 then do;
dset_1.var2=dset_2.var2;
dset_1.var3=dset_2.var3;
end;
else do;
dset_1.var1= "Missing";
dset_1.var2= "Missing";
end;
run;
Somebody please help me understand this. I tried various combinations nothing worked.
Regards,
Vinny.
I don't know what 'contelled' is, but what do you want to happen if dset_1.var1 is not equal to dset_2.var1?
Hi Tom,
I am sorry about that...updated the information.Thanks for noticing and notifying.
Regards,
Vinny.
so you'd want to do a left join between the 2 tables. Then your case statement can be something like
case when table2.var is missing then 'missing' else table2.var end
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.