1 通过sql实现分页。
select top 5 * from judgeorder where id not in (select top 10 id from judgeorder order by id) order by id
通俗点讲: 选择不在前十条记录中的前五条记录。也就是第 11 - 15 条记录。
通过控制 5 每一页的记录数 10 (2*5) 已经选过的数据 。
2 有时候,在sql中使用 case - when- then 判断可能会在sql中加入了 中文 。这样可能会因为编码方面的问题导致php链接的数据库不能执行该sql。