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

If a LEFT JOIN and an INNER JOIN return the exact same rows, which is more efficient to use?

 

For example,

data one;
	mrn='1111';cpt='aaa';output;
	mrn='2222';cpt='bbb';output;
	mrn='3333';cpt='ccc';output;
	mrn='4444';cpt='ddd';output;
run;

data two;
	mrn='1111';age=22;output;
	mrn='2222';age=44;output;
	mrn='3333';age=66;output;
	mrn='4444';age=11;output;
run;

proc sql noprint;
	create table blah1 as
		select
			a.mrn,
			a.cpt,
			b.age
		from
			one a
			inner join two b
				on a.mrn=b.mrn;

	create table blah2 as
		select
			a.mrn,
			a.cpt,
			b.age
		from
			one a
			left join two b
				on a.mrn=b.mrn;
quit;

 

1 ACCEPTED SOLUTION

Accepted Solutions
LinusH
Tourmaline | Level 20
To extend @Reeza answer - if your logic holds for inner joins - those are better performing than outer joins generally speaking.
Data never sleeps

View solution in original post

3 REPLIES 3
Reeza
Super User

Use the one that makes logical sense. In this case you have a 1 to 1 match. If you always expect this use an inner match, if you can't trust this rule and always want the information from a specific table use the right/left join instead.

LinusH
Tourmaline | Level 20
To extend @Reeza answer - if your logic holds for inner joins - those are better performing than outer joins generally speaking.
Data never sleeps
dataMart87
Quartz | Level 8

Thanks.  I always thought INNER JOINS were not as efficient as a LEFT JOIN or a RIGHT JOIN because INNER JOINS check rows common to both tables, whereas LEFT JOINS or RIGHT JOINS just check for rows on either the left-hand or right-hand table.

 

I'm curious what the exceptions are to this rule, if any?

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 2248 views
  • 0 likes
  • 3 in conversation