Hello,
I have two to join
table 1
A B
1 6
2 8
TABLE2
A B
3 5
4 6
I want
A B
1 6
2 8
3 5
4 6
data want;
set
table1
table2
;
run;
You can have many sets appended this way. You can also use lists such as:
data want
set table: ;
run;
The : says "Use all datasets in the library that start with Table". The order might not be what you want as TableAmuchlongername would come before TableB.
data want;
set
table1
table2
;
run;
You can have many sets appended this way. You can also use lists such as:
data want
set table: ;
run;
The : says "Use all datasets in the library that start with Table". The order might not be what you want as TableAmuchlongername would come before TableB.
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 lock in 2025 pricing—just $495!
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.