SAS_Institute
A00-212 · Question #9
Given the SAS data sets ONE and TWO: The following SAS program is submitted: proc sql; select two.*, budget from one <insert JOIN operator here> two on one.year = two.year; quit; The following…
The correct answer is C. FULL JOIN. See the full explanation below for the reasoning.
Question
Given the SAS data sets ONE and TWO:
The following SAS program is submitted:
proc sql; select two.*, budget from one <insert JOIN operator here> two on one.year = two.year; quit; The following output is desired:
Which JOIN operator completes the program and generates the desired output?
Exhibits
Options
- ALEFT JOIN
- BRIGHT JOIN
- CFULL JOIN
- DINNER JOIN
How the community answered
(22 responses)- A9% (2)
- B5% (1)
- C73% (16)
- D14% (3)
Community Discussion
No community discussion yet for this question.

