gpt4 book ai didi

mysql - 以 10s、20s 等为一组返回标记行

转载 作者:可可西里 更新时间:2023-11-01 07:33:15 25 4
gpt4 key购买 nike

我有一张座位号和标记表,如下所示:

seat    marks
61 45
62 25
63 45
64 23
65 25
66 9
67 23

最高分是 100。现在我想显示有多少考生在 10s、20s、30、.... 100s 内获得分数

marks     candidates_count
10 1
20 4
30 0
.. ..

等等。现在我知道了

SELECT seat, marks, count(marks) as counts from <table> group by marks order by counts  desc;

或者每 10 秒、20 秒和 30 秒执行一次

SELECT seat, marks from <table> where marks>10 and marks<=20 group by marks;

并获取我的 php 中返回的行数并返回结果,但这不是很优雅。必须有一种方法可以直接在 MySQL 中执行此操作,而无需使用 MySQL for 循环。

最佳答案

以下肯定对你有用

select (FLOOR(`marks`/ 10)+1)*10 as marks,
count(*) as candidates_count
from <table>
group by (FLOOR(`marks`/ 10)+1)*10;

关于mysql - 以 10s、20s 等为一组返回标记行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12857175/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com