You want to use LIMIT and OFFSET
SELECT * FROM Table LIMIT 10 OFFSET 0
Which can also be expressed with the following shorthand syntax
SELECT * FROM Table LIMIT X,Y
Where X
represents the offset, which is exclusive, and Y
represents the quantity, so for example
SELECT * FROM Table LIMIT 50,50
Would return rows 51-100
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…