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

Hello everyone,

I have two datasets which has the same variable (Uni_Id). I want to create a subset of dataset1 such that the new subset will contain the observations whose uni_id values are equal to the values for this variable in the other dataset, dataset2.

I appreciate any suggestion.

1 ACCEPTED SOLUTION

Accepted Solutions
GreggB
Pyrite | Level 9

Do  you want to keep the vars in both data sets?  I will assume  you do.  If you want only those observations where the ID is the same in both datasets:

proc sql;

create table join1 as

select a.*, b.* from dataset1 as a

inner join dataset2 as b

on a.Uni_id=b.Uni_id

quit:

You will get a warning saying that Uni_id appears in both data sets and it will the value of Uni_id in dataset1

View solution in original post

2 REPLIES 2
GreggB
Pyrite | Level 9

Do  you want to keep the vars in both data sets?  I will assume  you do.  If you want only those observations where the ID is the same in both datasets:

proc sql;

create table join1 as

select a.*, b.* from dataset1 as a

inner join dataset2 as b

on a.Uni_id=b.Uni_id

quit:

You will get a warning saying that Uni_id appears in both data sets and it will the value of Uni_id in dataset1

m1986MM
Obsidian | Level 7

Thank you.

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!

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