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
Thqs Ksharp i know you will Reply
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;
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
Thqs Ksharp i know you will Reply
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.
Ready to level-up your skills? Choose your own adventure.