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

HI all,

I have two tables,

data test;

    infile datalines;

    input obs product $ quantity;

    datalines;

    1   A  2

    2   B  3

    3   C  5

    4   D  6

    ;

run;

data test2;

    infile datalines;

    input obs product $ quantity;

    datalines;

    1   A  5

    2   D  8

    ;

run;

I want to create a datasets as follows:

    1   A  5

    2   B  3

    3   C  5

    4   D  8

A and D gets updated value from test2? Is there way to achieve this using PROC SQL??

Thanks for the help in advance..

1 ACCEPTED SOLUTION

Accepted Solutions
slchen
Lapis Lazuli | Level 10


proc sql;
  update test as a
    set quantity=(select quantity from test2 b where a.product=b.product) where a.product in (select product from test2);
    quit;

or

data test;
  update test test2;
  by product;
  run;
 

View solution in original post

4 REPLIES 4
Reeza
Super User

Why SQL? This is easier in a data step.

stat_sas
Ammonite | Level 13

Try this.

proc sql;

select a.obs,a.product,COALESCE(b.quantity,a.quantity)

from test a left join test2 b

on a.product=b.product;

quit;

slchen
Lapis Lazuli | Level 10


proc sql;
  update test as a
    set quantity=(select quantity from test2 b where a.product=b.product) where a.product in (select product from test2);
    quit;

or

data test;
  update test test2;
  by product;
  run;
 

devnand
Obsidian | Level 7

thank you all for your suggestion

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
  • 4 replies
  • 1376 views
  • 4 likes
  • 4 in conversation