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.
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.