Skip to content
Advertisement

Select from row to last row

Is it possible for me with MySQL to select the from a specific row to the end of the table, without knowing how many rows there are left?

My query at the moment is:

But I want to be able to something like:

Can this be done?

Advertisement

Answer

Just use a large value like 999999999 that is going to be bigger than the table. So:

Although less popular, I prefer the syntax:

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement