0 votes
in Sql by

Which of the following statements is true about SQLite indexes?

a) An index is a data structure that improves the speed of data retrieval operations on a table.

b) An index can be created on one or more columns of a table.

c) SQLite supports several types of indexes, including B-tree and Hash indexes.

d) All of the above.

1 Answer

0 votes
by

Answer: d) All of the above.

Explanation: An index is a data structure that improves the speed of data retrieval operations on a table, and it can be created on one or more columns of a table. SQLite supports several types of indexes, including B-tree and Hash indexes.

...