hi -
I need to join two tables without losing any of the key variables from both tables. I'm looking to achieve this using proc sql full outer join.
The problem I am trying to solve is that I want the common variable to both tables, to appear as one column. I heard that the 'coalesce' function, can achieve this, however when I tried, the observations from the variable is listed as a binary (either 0 or 1).
Base SAS code that achieves result I am looking to get, :
data want;
merge A B;
by ID;
run;SQL code I used along with the coalesce function, which gives me binary result:
proc sql; create table Want as
select coalesce(a.ID=b.ID) as ID, a.expi, b.sta_dt, b.ts_acn_sts_cd, b.ts_acn_sts_rsn_cd
from A as a full outer join B as b on
a.ID=b.ID;
quit;To note: There are no blank variables in either table A or B, and my ID column (from both tables) is formatted as 11 text characters.
I look forward to receiving your suggestion, thanks
Thanks for the explanation Chris, it is working now!
David
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 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.
Ready to level-up your skills? Choose your own adventure.