I have two data sets, A and B. A is larger and contains all the same information as B plus extra (B was created from A using proc sql - selecting distinct observations). I would like to remove everything that is contained in data set B from data set A to have two distinct sets with no duplicate variables.
How would I go about this?
If all the variables are the same
Proc sql;
create table want as
select * from A
except
select * from B
;
quit;
I think @jklaverstijn may have meant NOT instead of NOG
How about this
Proc sql;
Create table c as
Select * from a where nog exists (select * from b);
Quit;
If all the variables are the same
Proc sql;
create table want as
select * from A
except
select * from B
;
quit;
I think @jklaverstijn may have meant NOT instead of NOG
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.