InterviewSolution
Saved Bookmarks
| 1. |
We create an index in SQL using _______ command(a) Create index(b) New index(c) Create new index(d) Develop indexI have been asked this question in exam.The query is from Bitmap Indices topic in portion Indexing and Hashing of RDBMS |
|
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). |
|