Hello,
I want to joint some tables.
table 1
A B C
1 2 5
2 9 6
5 5 6
table2
A B C
8 9 9
5 6 3
2 1 3
JOINT TABLE THAT I WANT
A B C
1 2 5
2 9 6
5 5 6
8 9 9
5 6 3
2 1 3
data want;
set table1 table2;
run;
Join is reserved for something else. What you want is concatenate:
data join;
set table1 table2;
run;
PG
select * from table1
union all
select * from table2
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.