BookmarkSubscribeRSS Feed
realnewbie
Calcite | Level 5

So... I'm stuck at this problem. So I have dataset a, looks something like this

id1

1

2

3

and another dataset b,

id2

1

2

I want to merge a and b to a new dataset ab, to make it looks like this :

id1 id2

1    1

1    2

2    1

2    2

3    1

3    2

how to do this??? Thanks!!!

2 REPLIES 2
Linlin
Lapis Lazuli | Level 10

data a;

input id1;

cards;

1

2

3

;

data b;

input d2;

cards;

1

2

;

data ab;

do j=1 to n1;

set a nobs=n1 point=j ;

do i=1 to nobs;

   set b nobs=nobs point=i;

   output;

   end;end;

   stop;

   proc print;run;

ballardw
Super User

or

Proc sql;

     Create table want as

     Select a.*, b.*

     From a, b

     order by id1

     ;

quit;

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