Quiz title : Set - 001 - Part 14
Question 1 of 8
Given the following SAS data sets ONE and TWO:;
ONE TWO
YEAR QTR BUDGET YEAR QTR SALES
----------------------------- ------------------------------
2001 3 500 2001 4 300
2001 4 400 2002 1 600
2002 1 700
The following SAS program is submitted:;
proc sql;
select one.*, sales
from one left join two
on one.year = two.year;
quit;
Which one of the following reports is generated?