InterviewSolution
Saved Bookmarks
| 1. |
We delete and index in SQL using the ________ command(a) Remove index(b) Delete index(c) Drop index(d) None of the mentionedThe question was posed to me in class test.The above asked question is from Bitmap Indices in division Indexing and Hashing of RDBMS |
|
Answer» RIGHT choice is (c) DROP index The BEST I can explain: We delete and index in SQL using the drop index command. Syntax: drop index ; |
|