Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam A00-212 topic 1 question 21 discussion

Actual exam question from SAS Institute's A00-212
Question #: 21
Topic #: 1
[All A00-212 Questions]

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?

  • 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;
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
mhminkov
2 years, 8 months ago
given answer is D correct, s. test code below data ONE; infile datalines; input ID NAME $; datalines; 112 Smith 243 Wei 457 Jones ; data TWO; infile datalines; input ID SALARY; datalines; 213 150000 355 45000 523 75000 ; data combine; merge one two; by id; run; /* 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; proc sql; Create table combine as Select one.id, Name, salary from one full join two where one.id=two.id; Quit; proc sql; Create table combine as Select one.id,name,salary from one inner join two on one.id=two.id; Quit; */ proc sql; Create table combinesql as Select coalesce (one.id, two.id) as id, Name,salary from one full join two on one.id=two.id; Quit;
upvoted 1 times
...
Sugarlips
4 years, 5 months ago
answer is A
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...