Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Datenbank:SQL-Paginierung?

MySQLs Begrenzungsklausel macht dies einfach:

SELECT cols
FROM table
LIMIT offset, rowcount

In Ihrem Fall:

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