How can we use LEFT JOIN when we have more than 2 tables? PROC SQL equivalent code for the following merge statement code?l
Data abc;
merge a (in=X) b c;
by id;
if X;
run;
@SASKiwi gives a good example of a 3 table join.
The example @Ujjawal gave though is for a match-merge which would generate (potentially) different results. HERE is a link to a SUGI 30 paper highlighting the differences (there are many other papers as well). There are reasons to use the different types of merge/joins depending on the need.
Steve
proc sql
create table abc as
select *
from a
left join b
on a.id = b.id
left join c
on a.id = c.id;
quit;
@SASKiwi gives a good example of a 3 table join.
The example @Ujjawal gave though is for a match-merge which would generate (potentially) different results. HERE is a link to a SUGI 30 paper highlighting the differences (there are many other papers as well). There are reasons to use the different types of merge/joins depending on the need.
Steve
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.