查询出课程选课人数超过 2 人的课程编号。
select temp.Cno from (select Cno,count(Sno) as num from table_name group by Cno)temp where temp.num>=2
望采纳
select count(需要查询的东西) 和平常一样