By admin | August 12, 2009

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;

2 comments | Add One

  1. admin - 08/12/2009 at 2:16 pm

    A

  2. Consty - 02/12/2013 at 7:03 pm

    A: Drop index index-name from table-name

Leave a Comment

Leave a Reply

Your email address will not be published.