BookmarkSubscribeRSS Feed
endofline
Obsidian | Level 7

Hello All, 

 

 i'm trying to merge two databases that do not have a unique linking variable between the two of them. 

 

My first database consists of IDs, with only one ID for each obersvation. 

 

My second database consists of a procedure ID, percents and other information. How I'd like the final data set to look is something like:

 

ID     Procedure 

1         2

1        3

1        4

1       5

1       6

 

2       2

2       3

2       4

2       5

2       6

 

Thanks for the help! 

2 REPLIES 2
ballardw
Super User

Proc sql;

   create table want as

   select dataset1.* , dataset2.*

   from dataset1 , dataset2;

quit;

Reeza
Super User

Known as a Cartesian Join and in SQL is a cross join. 

 

 

Proc sql;

create table want as

select a.name, b.age

from sashelp.class as a

cross join sashelp.class as b;

quit;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 2 replies
  • 986 views
  • 2 likes
  • 3 in conversation