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

Hello, i need help to merge below table

have1

var1                       var2                 var3_a

1234567891        15721572       au

1234567891        26702670        io

have2

var1                        var2                  var3_b

1234567891        15721572        au

1234567891         26702670       io

1234567891         11301130       io

merge by var1 var2

want

1234567891        15721572       au

1234567891        26702670       io

1234567891        11301130       io

Thanks............

1 ACCEPTED SOLUTION

Accepted Solutions
Haikuo
Onyx | Level 15

Given both tables are sorted by var1-var3,

data want;

set have1 have2;

by var1 var2 var3;

run;

Haikuo

View solution in original post

6 REPLIES 6
stat_sas
Ammonite | Level 13

proc sql;

select a.* from have2 a

left join have1 b

on a.var1=b.var1

and a.var2=b.var2;

quit;

Haikuo
Onyx | Level 15

May I ask what is the difference between "have2" and "want"?

woo
Barite | Level 11 woo
Barite | Level 11

sorry Hai.Kuo - so in some cases i have below situation;

var1                       var2                 var3_a

1234567891        15721572       au

1234567891        26702670       zz

have2

var1                        var2                  var3_b

1234567891        15721572        au

1234567891         26702670       io

1234567891         11301130       do

merge by var1 var2

want

var1                       var2                 var3_a

1234567891        15721572       au

1234567891        26702670       zz

1234567891         26702670       io

1234567891         11301130       do




thanks.......

Haikuo
Onyx | Level 15

Given both tables are sorted by var1-var3,

data want;

set have1 have2;

by var1 var2 var3;

run;

Haikuo

Tom
Super User Tom
Super User

Does not look like you want to MERGE the tables as that would imply that you wanted to combine records from different tables based on matching key variables.  Looks more like you want to UNION the two tables.

proc sql ;

create table want as

  select var1,var2,var3_a as var3 from have1

  union

  select var1,var2,var3_b as var3 from have2

;

woo
Barite | Level 11 woo
Barite | Level 11

Thanks Hai.kuo and Tom...Now i have two options Smiley Happy Smiley Happy Smiley Happy

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 6 replies
  • 1956 views
  • 3 likes
  • 4 in conversation