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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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