post=1;city='a';output;
post=2;city='b';output;
run;
data file2;
post=1;city='a';seg='x';
run;
data file3;
post=2; seg='y';
run;
proc sql ;
create table temp as
select a.post as post ,a.city as city,b.seg as seg
from file1 as a left join file2 as b on a.post=b.post and a.city=b.city;
create table want as
select a.post as post ,a.city as city,coalesce(a.seg,b.seg) as seg
from temp as a left join file3 as b on a.post=b.post;
quit;
[pre]
Ksharp
[/pre]
Message was edited by: Ksharp
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.