What is a covering index in a database?

  • An index that covers only a subset of the columns
  • An index that covers the entire table
  • An index that includes additional metadata
  • An index that includes all columns required by a query
A covering index in a database is an index that includes all the columns required by a query. It allows the database to retrieve data directly from the index without needing to access the table, improving query performance.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *