SELECT DISTINCT a.id, a.num FROM a LEFT JOIN d ON a.id = d.stockId WHERE a.cid = 156662 AND a.status = 3 AND d.wid IN ( 123, ) ORDER BY a.num DESC LIMIT 0,10
去掉limit,查看num大于0的值很多,怎么会取不到?
结果显示,distinct对id进行了重新排序导致,最后limit取了重新排序后的前10条数据。
解决方案修改sql:
distinct id,会对id进行重新排序,如果分页结果显示顺序会有问题。
order by避免和distinct一起使用,尽量和group by去重。