但是可以告诉你一个调试的办法
create table test as
SELECT *,if(org_ 。。。。ORDER BY `saler_back_local_rate` asc ;
你把你的sql 语句查出来的结果 建一个表 test
然后 在
select * from test limit 0,10
select * from test limit 11,20
....
你直接看查出来的分页数据有没有问题
不列出表结构及测试数据,只能这样大概写个思路了:select a.*
from
(
select t1.*,(select count(*)+1 from 表 where 分组字段=t1.分组字段 and 排序字段<t1.排序字段) as group_id
from 表 t1
) a
where a.group_id<=3
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)