I am starting to use SQL Server. The following works:
SELECT TOP 100 *
FROM SalesRawData
WHERE Title = N'Sriracha'
But the following causes an error:
SELECT *
FROM SalesRawData
WHERE Title = N'Sriracha'
LIMIT 100
Why can't I use the "normal" limit syntax at the end here?