What are the different types of indexes, what are the benefits of each?
Unique – Guarantees unique values for the column(or set of columns) included in the index Covering – Includes all of the columns that are used in a particular query (or set of queries), allowing the database to use only the index and not actually have to look at the table data to retrieve the results … Read more