IBM
A2090-614 · Question #77
Consider the following statement: Which indexes should be created for optimal query performance?
The correct answer is C. CREATE INDEX emp_idx ON employee (workdept, lastname, job); CREATE INDEX dept_idx ON. See the full explanation below for the reasoning.
Question
Consider the following statement:
Which indexes should be created for optimal query performance?
Options
- ACREATE INDEX emp_idx ON employee (workdept);
- BCREATE INDEX emp_idx ON employee (workdept) CLUSTER; CREATE INDEX dept_idx ON
- CCREATE INDEX emp_idx ON employee (workdept, lastname, job); CREATE INDEX dept_idx ON
- DCREATE INDEX emp_idx ON employee (lastname, job, workdept) CLUSTER; CREATE INDEX
How the community answered
(19 responses)- A5% (1)
- B5% (1)
- C79% (15)
- D11% (2)
Community Discussion
No community discussion yet for this question.