Câu 14: A00-212: SAS Advanced Programming for SAS 9
Given the SAS data sets ONE and TWO: The following SAS program is submitted:Data combine;Merge one two;By id;Run;Which SQL procedure program procedures the same results?
Nội dung câu hỏi
Given the SAS data sets ONE and TWO: The following SAS program is submitted:Data combine;Merge one two;By id;Run;Which SQL procedure program procedures the same results?
Các lựa chọn
Đáp án được giữ gọn theo nhãn A, B, C, D trong phần bình chọn tương tác.
- A. proc sql; Create table combine as Select coalesce (one.id, two.id) as id, Name,salary from one, two where one.id=two.id; Quit;
- B. proc sql; Create table combine as Select one.id, Name, salary from one full join two where one.id=two.id; Quit
- C. proc sql; Create table combine as Select one.id,name,salary from one inner join two on one.id=two.id Quit
- D. proc sql; Create table combine as Select coalesce (one id, two id) as id, Name,salary from one full join two on one.id=two.id; — đáp án hiện tại
Cộng đồng
0 bình luận công khai. Tên thành viên được ẩn một phần.
Chưa có bình luận. Mở giao diện tương tác để bắt đầu thảo luận.