limit is the syntax of MySQL
select * from table limit m,n
where m refers to the index where the record starts, starting from 0, indicating the first record
n refers to the index starting from m+1 Starting from bar, take n bar.
select * from tablename limit 2,4
That is, take out the 3rd to 6th records, 4 records.
The above is the usage of mysql advanced (seven) limit. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!