如何查询不同课程成绩相同的学生信息?
不同课程成绩相同的学生查询
给出的题目是查询不同课程成绩相同的学生信息,包括学生编号 (sid)、课程编号 (cid) 和学生成绩 (score)。解决该问题的核心思路是使用聚合函数 group_concat(),将相同成绩中有多名学生的 sid 聚合起来,再进行筛选。
具体步骤:
- 根据 cid 和 score 对 sc 表进行分组。
- 使用 group_concat() 函数将每个组中的 sid 聚合在一起,以逗号分隔。
- 使用 having 子句筛选具有超过一名学生的组,这些组就是成绩相同但学生不同的情况。
- 返回聚合后的 group_concat(sid)、cid 和 score。
sql 查询:
select group_concat(sid order by sid) as sids, cid, score from sc group by cid, score having count(1) > 1;
示例数据:
以下为示例数据,其中两组成绩相同:
create table sc (sid int, cid int, score decimal); insert into sc values (1, 1, 80.0); insert into sc values (3, 1, 80.0); insert into sc values (2, 3, 80.0); insert into sc values (3, 3, 80.0);
查询结果:
select group_concat(sid order by sid) as sids, cid, score from sc group by cid, score having count(1) > 1;
sids | cid | score |
---|---|---|
1, 3 | 1 | 80.0 |
2, 3 | 3 | 80.0 |
以上就是如何查询不同课程成绩相同的学生信息?的详细内容,更多请关注其它相关文章!