The topic describes the DF199 T-SQL code analysis rule.
DEPRECATED
The old-style TOP clause is used.
It is recommended to use the updated TOP clause syntax, which includes parentheses around the expression, as this enhances clarity.
SELECT TOP 100 id, txt FROM dbo.demotable ORDER BY id
GO
SELECT TOP (100) id, txt FROM dbo.demotable ORDER BY id
GO