查询出课程选课人数超过 2 人的课程编号。
收起
select temp.Cno from (select Cno,count(Sno) as num from table_name group by Cno)temp where temp.num>=2
望采纳
报告相同问题?