select s.sno 学号,avg(c.score) 平均成绩 from student s inner join sc c on s.sno = c.sno group by c.sno having min(c.score)>60
select s.cno 学号、s.sname 姓名、count(*) 选课数、sum(score) 总成绩 from student s inner join sc c on s.sno = c.sno group by c.sno
select count(*) from student where sname like '周%'