0 votes
in Sql by

Which of the following commands is used to drop an index in SQLite?

a) DROP INDEX

b) REMOVE INDEX

c) DELETE INDEX

d) DESTROY INDEX

1 Answer

0 votes
by

Answer: a) DROP INDEX

Explanation: The DROP INDEX statement is used to drop an index in SQLite. The syntax is as follows: DROP INDEX index_name;

...