我有一张这样的座位号和标记表:
seat marks
61 45
62 25
63 45
64 23
65 25
66 9
67 23
最高分是 100。现在我想显示有多少候选人在 10 秒、20 秒、30 秒、.... 100 秒内获得分数
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 循环。