InterviewSolution
Saved Bookmarks
| 1. |
We create an index in SQL using _______ command(a) Create index(b) New index(c) Create new index(d) Develop index |
|
Answer» Right choice is (a) Create index For explanation: We create an index in SQL using the create index command. Eg: create index dept_index on instructor(dept_name). |
|