Given following example:
CREATE NONCLUSTERED INDEX IX_Address_PostalCode
ON Person.Address (PostalCode)
INCLUDE (AddressLine1);
GO
If I included more columns in the INCLUDE list like:
CREATE NONCLUSTERED INDEX IX_Address_PostalCode
ON Person.Address (PostalCode)
INCLUDE (AddressLine1, AddressLine2, City, StateProvinceID, Latitude, Longitute, Zip, Country, etc... );
GO
Does this require more space on disk?
Or put differently: is data that is covered in the INCLUDE
list duplicated on the leaf nodes of the index?