5. Which of the following displays the structure of a table in the SAS log?
a. proc sql;
describe as
select *
from certadv.payrollmaster;
quit;
b. proc sql;
describe contents certadv.payrollmaster;
quit;
c. proc sql;
describe table certadv.payrollmaster;
quit;
d. proc sql;
describe * from certadv.payrollmaster;
quit;
5. Correct answer: b
The DESCRIBE TABLE statement lists the column attributes for a specified table.
Looks Obvious C is the answer