Quiz
Select the best answer
for each question. After completing the quiz, check your answers using
the answer key in the appendix.
-
Which of the following creates an index on the column EmpID for the table Sasuser.Staffmaster?
-
proc sql; create simple index(empid) on sasuser.staffmaster;
-
proc sql; create empid index on sasuser.staffmaster(empid);
-
proc sql; create simple index on empid from sasuser.staffmaster;
-
proc sql; create index empid on sasuser.staffmaster(empid);
-
-
Which keyword must you add to your index definition in the CREATE INDEX statement to ensure that no duplicate values of the key column can exist?
-
KEY
-
UNIQUE
-
NODUPS
-
NODUPKEY
-
-
Which of the following creates a composite index ...
Get SAS Certification Prep Guide, 4th Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.