I\'m interested in learning some (ideally) database agnostic ways of selecting the nth row from a database table. It would also be interesting to see how this can b
Verify it on SQL Server:
Select top 10 * From emp EXCEPT Select top 9 * From emp
This will give you 10th ROW of emp table!