作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有如下表格
item_id position_number position_date
1 9 2013-06-29 15:12:58
2 7 2013-07-25 15:12:58
18 5 2013-07-08 12:07:00
13 9 2013-07-08 12:07:00
我想获取按 position_number 分组并按 position_date DESC 排序的项目,因此查询将返回以下内容:
item_id position_number position_date
13 9 2013-07-08 12:07:00
2 7 2013-07-25 15:12:58
18 5 2013-07-08 12:07:00
我一直在实现一些使用 DISTINCT 和 GROUP BY 的解决方案,但没有得到预期的结果。
有没有人知道如何解决它?
最佳答案
SELECT a.*
FROM tableName a
INNER JOIN
(
SELECT position_number, MAX(position_date) position_date
FROM tableName
GROUP BY position_number
) b ON a.position_number = b.position_number AND
a.position_date = b.position_date
ORDER BY a.position_number DESC
关于MYSQL DISTINCT 和 ORDER BY 在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17932783/
我是一名优秀的程序员,十分优秀!