Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Question: What is the purpose of the MERGE statement in SAS?
Answer: The MERGE statement in SAS is used to combine two or more datasets based on a common variable. It performs a match-merge operation.

Example:

DATA merged_dataset; MERGE dataset1 dataset2; BY common_variable; RUN;
Is it helpful? Yes No

Most helpful rated by users:

©2025 WithoutBook