Senior
Indexes
SQL & Databases
What is a covering index and how does it show up in a query plan?
Short answer: A covering index includes all columns a query needs (key + INCLUDE), enabling an Index Seek/Scan without Key Lookup. In plans, look for absence of Key Lookup and lower estimated cost.
Offer: CREATE INDEX ... INCLUDE (ColA, ColB) as the practical answer.
Share this Q&A
Share preview image: https://www.toolliyo.com/images/toolliyo-logo.png