This tutorial explains how to use the PROC APPEND procedure in SAS, along with examples.
The basic syntax of PROC APPEND is as follows :
PROC APPEND BASE=output-dataset DATA=source-dataset; RUN;
BASE=
: Specify the name of the dataset where the source dataset will be added. DATA=
Specify the name of the dataset that needs to be added.