select * from user2 limit 4;
select * from user2 limit 3,5;
解释:取出从第3行(从0行开始)开始的5条记录。
(二)limit的高级用法
原文:https://www.cnblogs.com/shyroke/p/9376007.html