SQL Server Statistics – my definition

STATISTICS is metadata that indicates to the query-optimizer how many rows it needs to read to get a representative sample of all (relevant) data in a table.

Indexes that return a smaller number of rows are not used for the current query.

Leave a comment