BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sas_Forum
Calcite | Level 5

Hi in table table1 and table2 i want to create table l3 from table1 and table2 tables based on table2.id2 =table.id
i want to do it on hash keys

data table1;
input id id2;
cards;
1 2
2 3
3 4
4 5
run;

data table2;
input id id2;
cards;
2 3
run;

output
id id2
3 4

1 ACCEPTED SOLUTION

Accepted Solutions
sas_Forum
Calcite | Level 5

Thqs Ksharp i know you will Reply

View solution in original post

3 REPLIES 3
sas_Forum
Calcite | Level 5

I can do same in joins

proc sql;
create table l3 as select a.id,a.id2 from table1 as a right join table2 as b
on a.id=b.id2;
quit;
proc print;run;

Ksharp
Super User

OK. Easy.

Assuming your id2 in table2 has no replicated value.

data table1;
input id id2;
cards;
1 2
2 3
3 4
4 5
;
run;

data table2;
input id id2;
cards;
2 3
;
run;

data want;
 if _n_ eq 1 then do;
  if 0 then set table2;
  declare hash ha(dataset:'table2', hashexp:10);
   ha.definekey('id2');
   ha.definedone();
 end;
 set table1;
  if ha.check(key:id)=0 then output;
run;



Ksharp

sas_Forum
Calcite | Level 5

Thqs Ksharp i know you will Reply

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1238 views
  • 3 likes
  • 2 in conversation