The topic describes the DF046 T-SQL code analysis rule.
BEST PRACTICE
Asterisk instead of a column list is used in the SELECT statement.
It is recommended to explicitly specify columns in the select list. Using SELECT * FROM can create issues such as unreliable column order, unnecessary network load, and query performance problems.
SELECT * FROM HumanResources.Employee
GO
SELECT BusinessEntityID,NationalIDNumber,LoginID
FROM HumanResources.Employee
GO