Add simple "LIMIT nnn" syntax (as well as TOP) to improve compatability
1
vote
We have added the START AT clause to our TOP X functionality. For example you will be able to execute the following:
SELECT TOP 2 START AT 6 *
FROM Employees
ORDER BY Surname DESC;
1 comment
-
AzzaAzza69
commented