The topic describes the DF003 T-SQL code analysis rule.
BEST PRACTICE
The column list for the INSERT statement is missing.
It is recommended to explicitly specify the column list for the INSERT statement. This results in better code readability and helps avoid errors caused by changes to the table structure.
INSERT INTO dbo.Customers VALUES(@FirstName, @LastName)
INSERT INTO dbo.Customers(FirstName, LastName) VALUES(@FirstName, @LastName)