关于数据库:order-by和distinct导致结果显示顺序有问题

40次阅读

共计 355 个字符,预计需要花费 1 分钟才能阅读完成。

SQL 如下

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:
  1. distinct 换成 group by
  2. order by a.num desc 换成 order by a.num desc,a.id

    ### 总结
    distinct id,会对 id 进行从新排序,如果分页结果显示程序会有问题。
    order by 防止和 distinct 一起应用,尽量和 group by 去重。

正文完
 0