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

data dat1;
input x;
cards;
1
3
4
6
7
8
;
run;
data dat2;
input y;
cards;
1
4
3
6
7
5
;
run;

 

How to get the data include all combination of x and y?

 

that is:

x y

1 1
1 4
1 3
1 6
1 7
1 5

3 1
3 4
3 3
3 6
3 7
3 5....

 

thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User
Proc Sql;
   create table want as
   select dat1.x, dat2.y
   from dat1, dat2
   ;
quit;

There will be a note in the log about a Cartesian join that cannot be optimized. Since you are requesting a Cartesian join, all records with all records, that note is okay.

View solution in original post

1 REPLY 1
ballardw
Super User
Proc Sql;
   create table want as
   select dat1.x, dat2.y
   from dat1, dat2
   ;
quit;

There will be a note in the log about a Cartesian join that cannot be optimized. Since you are requesting a Cartesian join, all records with all records, that note is okay.

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