Hi,
In T-SQL I think I could write something like this:
Proc SQL;
delete a.*
from sample1 a inner join sample2 b
on a.id_src = b.id_src;
quit;
I basically want to remove records from one table that appear in the other.
Something along the line of the following may work for you:
proc sql;
select * from sample1
where id_src not in (select id_src from sample2);
quit;
Are you doing this on a sql server database, or are you trying to do it on a sas dataset? Because there are multiple ways to do it and each ahs its own benefits and downsides.
Oh, if you are trying to do it on a sas dataset, the method above is the way I have done it in the past (with a slight modification).
Proc SQL;
delete
from sample1 ss1
where ss1.id_src in (select id_src from Sample2);
quit;
run;
I've never actually tried this on a multi key delete however.
If you're doing this on a rbms database (like sql server) or the like, it's actually far more efficient to use a sql pass through function, Let me know if you need help on this.
Thanks
Is this essentially the same question as https://communities.sas.com/message/177458#177458?
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.