Hello, If the origin table has an index with INCLUDE columns, the output script has those columns as covering columns. Origin > CREATE INDEX idx1 ON MyTable (Col1) INCLUDE (Col2, Col3) Output > CREATE INDEX idx1 ON MyTable (Col1, Col2, Col3)