If I have a SQL Table called Persons that contain about 30000 rows and I want to make a SQL query that retrieve the data of row number 1000 ... I got it by non
Persons
you can try this
select * from Person P where 999 = ( select count(id) from Person P1 , Person P2 where P1.id = P.id and P2.id < P1.id)