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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 668 views
  • 0 likes
  • 2 in conversation