Hi all,
When merging datasets, is there a proc sql equivalent to the 'if a and not b' statement in data steps?
Thank you,
Marco
Yep, there are a few ways. One could be:
proc sql;
create table want as
select A.ID
from WORK.A A
left join WORK.B B
on A.ID=B.ID
where B.ID is null;
quit;
Yep, there are a few ways. One could be:
proc sql;
create table want as
select A.ID
from WORK.A A
left join WORK.B B
on A.ID=B.ID
where B.ID is null;
quit;
You can also do it in SAS if it makes it easier for you.
Proc sort data= a;
by Id;
run;
Proc sort data= b;
by ID;
run;
data abc;
merge a(in=a) b;
by ID;
if a=1;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—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.