The topic describes the DF059 T-SQL code analysis rule.
BEST PRACTICE
The assignment operator is used to specify a column alias.
According to the ANSI SQL standard, it is recommended to use the AS keyword to specify a column alias.
SELECT CustomerName = c.AccountNumber
FROM sales.Customer c
GO
SELECT c.AccountNumber AS CustomerName
FROM sales.Customer c
GO