The INCLUDE
option in SQL Server allows us to include non-key columns in a nonclustered index. These columns are not part of the index key (which SQL Server uses to order and search the index), but they are stored with the index pages.
The INCLUDE
option can significantly improve query performance when additional columns are needed by a query but are not part of the index key.