SAS Certified Adv Programmer 50 Questions (11)
The following SAS program is submitted:
%let lib=SASUSER; %let dsn=CLASS; proc sql; select name from dictionary.columns where libname="&lib" and <insert code here> quit;
Which one of the following conditions completes the WHERE clause to create a subset from the data set Dictionary.Columns about Sasuser.Class?
a.
table="&dsn"
b.
name="&dsn"
c.
member="&dsn"
d.
memname="&dsn"
Topics:
SAS Adv Questions |
1 Comment »
D