It is possible?
I know you can limit your queries with
SELECT TOP 10 name FROM customers ORDER BY name
but how can I get names from 50 to 100?
I need to make a pagination but I can't find a way to do it.
Thank you very much.
There is more simple way:
SELECT * FROM table1 WHERE RECNO()>50 AND RECNO()<=100