0 votes
in Sql by

Which of the following SQL statements is used to drop an index from a table in SQLite?

a) DROP INDEX

b) REMOVE INDEX

c) DELETE INDEX

d) None of the above

1 Answer

0 votes
by
Answer: a) DROP INDEX

Explanation: The DROP INDEX statement is used to drop an index from a table in SQLite.
...