-
select DISTINCT b.s_id,b.c_id,b.s_score from score a,score b where a.c_id != b.c_id and a.s_score = b.s_score and a.s_no=b.s_no
查询不同课程成绩相同的学生的学生编号、课程编号、学生成绩 点赞的写法
最新推荐文章于 2023-05-04 14:36:03 发布
select DISTINCT b.s_id,b.c_id,b.s_score from score a,score b where a.c_id != b.c_id and a.s_score = b.s_score and a.s_no=b.s_no