BookmarkSubscribeRSS Feed
Maisha_Huq
Quartz | Level 8

Hello:

When I create table using proc sql and the variable I am joining the tables "by" is in a different order of observations for each of the different tables being joined, what should I do to ensure proc sql creates the table where observations are matched?

Thank you!

1 REPLY 1
Steelers_In_DC
Barite | Level 11

There's a lot of documentation out there on this topic:

proc sql;

  title 'Inner Join';

  select *

  from lefttab as l inner join

  righttab as r

  on l.continent=r.continent;

Base SAS(R) 9.2 Procedures Guide

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 482 views
  • 0 likes
  • 2 in conversation