作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SELECT *
FROM (SELECT id, user, MAX(score) FROM table_1 GROUP BY user) AS sub
ORDER BY 'sub.score' ASC;
+-----------------------+
| id | score | username |
+-----------------------+
| 1 | 15 | mike |
| 2 | 23 | tom |
| 3 | 16 | mike |
| 4 | 22 | jack |
etc..
3 mike 16
2 tom 23
4 jack 22
3 mike 16
4 jack 22
2 tom 23
最佳答案
让我们一步一步地看看你在做什么:
SELECT id, user, MAX(score) FROM table_1 GROUP BY user
SELECT * FROM (...) AS sub ORDER BY 'sub.score' ASC;
max(score)
一个名字,例如
max(score) as max_score
,然后访问:
ORDER BY sub.max_score ASC
.
select * from table_1 t1 where not exists
(select * from table_1 higher where higher.name = t1.name and higher.score > t1.score)
order by score;
关于mysql - ORDER BY 后 GROUP BY 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40336850/
我是一名优秀的程序员,十分优秀!