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

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