Link to home
Start Free TrialLog in
Avatar of migiurgiu
migiurgiu

asked on

Join tables in SAS

I have 2 tables: table 1 one with a list of IDs and table 2 with a smaller list of IDs, which are all also in table 1. I want to merge/join the 2 tables in such a manner that I keep all the IDS in table 1, but not the IDS that are in both table 1 and 2. What kind of join do I need to do?
Avatar of wolfen351
wolfen351

proc sql;
  create table3 as
  select * from table1 where id not in (select id from table2) Data
quit;
ASKER CERTIFIED SOLUTION
Avatar of wolfen351
wolfen351

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial