I'm currently trying to setup a query that only selects from a row number and upwards from it. I've tried to use the LIMIT
method in this way:
SELECT name FROM names LIMIT 1500, *
Which I expected to select from row number 1500 till the table's rows ended, but got a MySQL error instead.
I then tried to use a conditional for the ID of the rows like so:
SELECT name FROM names WHERE id >= 1500
Which gave unpredictable behavior since there are rows that get deleted, so it's not taking the real row numbers.