What is a Covered Index in SQL Server ?

It is an index that can satisfy a query just by its index keys without having needed to touch the data pages is called Covering Index. It means that when a query is fired, SQL Server doesn’t need to go to the table to retrieve the rows, but can produce the results directly from the index as the index covers all the columns used in a query.



You May Interest

What is the Difference Between a Local and a Global Temporary Tab ...

What is a ROLLUP Clause in SQL Server ?

Creating a View in MS SQL

MS SQL Get Current Time GETDATE()

MS SQL Getting a Random Row in a Table