解决distinct与order by 的冲突

Posted 朝晖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决distinct与order by 的冲突相关的知识,希望对你有一定的参考价值。

sql="select distinct id from test order by otherfield desc"  

需要找到不同的id,同时又想让记录按fbsj排序。但是这样一定会出现错误,出现distinct与order by冲突问题。如何来得到完美的解决呢,看下面的方法,依然用一条sql语句

sql="select id from test group by id order by max(<span style="font-family: Arial, Helvetica, sans-serif;">otherfield</span>) desc" 

用group by 代替disitnct实现找不同id的功能。


以上已经过测试,可以完美解决distinct与order by的冲突问题

原载: 大连网站制作 http://www.noonenet.cn/

----------------------

补充两句在Django中解决这个问题是,直接annotate max即可,annotate本身自动添加group by

这个问题的解决体现了对SQL集合理论的理解,第一种方式其逻辑在集合理论中出现了跳跃,所以无法完成。

以上是关于解决distinct与order by 的冲突的主要内容,如果未能解决你的问题,请参考以下文章

sql中distinct与order by 不可以一起使用吗?

mysql ORDER BY,GROUP BY 和DISTINCT原理

使用 distinct 后如何执行 order_by?

如何在同一个SELECT语句中使用DISTINCT和ORDER BY?

如何应用:大查询中的count(distinct ...)超过(partition by ... order by)?

原则 ORDER BY 列但 DISTINCT 在另一列