BookmarkSubscribeRSS Feed
rwnj
Calcite | Level 5

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.

3 REPLIES 3
Haikuo
Onyx | Level 15

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;

Anotherdream
Quartz | Level 8

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

Fugue
Quartz | Level 8

Is this essentially the same question as https://communities.sas.com/message/177458#177458?


SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 14380 views
  • 1 like
  • 4 in conversation