I am wondering what is good practice from below two options. Please help.
1) [Multiple Non Clustered Index with Same Key Column and Different Include Column]
CREATE INDEX IX_index1 ON EMPLOYEE(keyColumn) INCLUDE (col1,col2)
CREATE INDEX IX_index2 ON EMPLOYEE(keyColumn) INCLUDE (col3,col4)
CREATE INDEX IX_index3 ON EMPLOYEE(keyColumn) INCLUDE (col5,col6)
CREATE INDEX IX_index4 ON EMPLOYEE(keyColumn) INCLUDE (col7,col8)
2) One Non Clustered Index with the Common Key column and all required columns in Include list]
CREATE INDEX IX_index ON EMPLOYEE(keyColumn) INCLUDE (col1,col2,col3,col4,col5,col6,col7,col8)
which one one from above two approach is better and faster.