SAS Certified Adv Programmer 50 Questions (14)
Which one of the following SAS programs removes the index Jobcode from the table Staff?
a.
proc sql; drop index jobcode from work.staff; quit;
b.
proc sql; delete index jobcode from work.staff; quit;
c.
proc sql; drop index from work.staff; quit;
d.
proc sql; delete index from work.staff; quit;
Topics:
SAS Adv Questions |
2 Comments »
A
A: Drop index index-name from table-name