How to do a select beginning with a certain line

2

How do I get a Select starting with example from the second row of my table?

I know that by using ASC limit 1,1 I can choose the second line, but how do I start from it?

    
asked by anonymous 14.01.2016 / 16:47

1 answer

2

You can put the second value of LIMIT as greater than the table can reach or value you think is appropriate.

Ex:

SELECT * FROM tabela ASC LIMIT 1,999999999999999999
    
14.01.2016 / 16:58