SAS Procedures

Help using Base SAS procedures
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-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1297 views
  • 3 likes
  • 3 in conversation