Google News
logo
MySQL - Quiz(MCQ)
The statement to remove indexes on tables is _____
A)
FLUSH INDEX
B)
REMOVE INDEX
C)
DROP INDEX
D)
DELETE INDEX

Correct Answer :   DROP INDEX


Explanation : MySQL provides statements to change the structure of tables. To add or remove the indexes on the existing database tables, the ‘CREATE INDEX’ and ‘DROP INDEX’ tables are used.

Advertisement