学生和课程是多对多,有学生表,课程表,关系表。问写出SQL找出选课大...

2024-11-24 02:31:03
推荐回答(3个)
回答1:

select * from 学生表 where stuId in (select stuId from 关系表 group by stuId having count(*)>5;)
其中stuId是学生表主键(暂定)

回答2:

select * from 学生表 where studentid in (select studentid from 关系表 group by studentid having count(*)>5)
子查询:select studentid from 关系表 group by studentid having count(*)>5 找出符合的ID

回答3:

你在问什么?