Mysql
 sql >> Database >  >> RDS >> Mysql

Database:impaginazione SQL?

clausola limite di MySQL rende tutto più semplice:

SELECT cols
FROM table
LIMIT offset, rowcount

Nel tuo caso:

LIMIT 49, 50 -- skip rows 0-49, grab the next 50