proc sql;
select *
from may_nomatch_2 a
inner join march2018_3_9char b on a.Loan_9 = b.LOAN and a.PropZIP = b.Property_Zip;
quit;
data;
merge may_nomatch_2(rename=(Loan_9=LOAN PropZIP=Property_Zip)) march2018_3_9char;
by Loan_9 PropZIP;
run;
I have above code. proc sql shows how I would do the join using sql. But I want to perform the join using merge and not sure how to do it
it is an inner join using 2 columns
those 2 columns don't have same name in both tables