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

Hi SAS Forum,

I took the attahced two data sets from "SUGI 27 Paper 70-27 An Introduction to SAS PROC SQL by

Harrington, T. J. (Acknowledged thankfully).

  • I first ran the proc SQL inner join with "inner join" phrase.
  • Then ran without "inner join" phrase.
  • Then compared the two output files using "proc compare".
  • Results show both produced identical results.

Question:

For the given small two data sets, both appraoches produced identical results with "inner join" phrase or without it.

Can I however generalize this conclusion for other situaitions invovling large data sets?

Thanks

Mirisage

1 ACCEPTED SOLUTION

Accepted Solutions
Murray_Court
Quartz | Level 8

My understanding was that the  difference between using the inner join phrase and other methodology what that of efficiency, not output. I think it is that the inner join phrase uses a more elegant method than just a "where a.id=b.id" subsetting clause, as it does not simply construct a cartesian product and weed out all of the irrelevant matches.

View solution in original post

3 REPLIES 3
Murray_Court
Quartz | Level 8

My understanding was that the  difference between using the inner join phrase and other methodology what that of efficiency, not output. I think it is that the inner join phrase uses a more elegant method than just a "where a.id=b.id" subsetting clause, as it does not simply construct a cartesian product and weed out all of the irrelevant matches.

PGStats
Opal | Level 21

The constructs

select ... from A, B where A.var=B.var

and

select ... from A inner join B on A.var=B.var

are perfectly equivalent. However, in the second case you can replace the word inner by left or right, and by cross or natural if you also remove the on clause.

PG

PG
Mirisage
Obsidian | Level 7

Hi Murray_Court and PGStats,

Many thanks to both of you for this help.

Regards

Mirisage

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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