mysql 子查询分组, 父查询排序+分页

mysql 子查询分组, 父查询排序+分页,第1张

我不知道原因

但是可以告诉你一个调试的办法

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6115868.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-15
下一篇 2023-03-15

发表评论

登录后才能评论

评论列表(0条)

保存