0 votes
in Sql by

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

a) CREATE INDEX

b) MAKE INDEX

c) ADD INDEX

d) None of the above

1 Answer

0 votes
by

Answer: a) CREATE INDEX

Explanation: The CREATE INDEX statement is used to create an index on a table in SQLite.

...