为什么要分页?
减少数据的处理量
一,使用Limit分页
SELECT * from user limit 2;
使用Mybatis实现分页,核心SQL
1.接口
2.Mapper.xml
3.测试
二,使用RowBounds分页
略