Hi there,
At my job we use SQL and often we will select the top 1000 rows using the syntax below.
I discovered the solution to this question using limit 0,10 however I don’t see why it wouldn’t also work to use Top.
Am I using a different version of SQL at work?
Thanks
Error: near line 1: near “10”: syntax error
select top 10 *
from flights;