Hi there: I want to copy data as follow:
Tbl_A Tbl_B
10 40
20 50
.. ..
Desire outcome:
Tbl_C - 2 columns
10 50
20 40
Any suggestions?
data Tbl_A ; input A; cards; 10 20 ; data Tbl_B ; input B; cards; 40 50 ; proc sql; create table Tbl_C as select * from Tbl_A,Tbl_B; quit;
Thanks and it works.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Register Now
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.