已知学生表student,成绩表sc,其各个字段如下表示:student (sno,sname,ssex,sbirthday,saddress,sdept,speciality),其中sno, sname,ssex,sbirthday,saddress,sdept,speciality分别指:学号,姓名,性别,出生日期,家庭地址,系部,专业。sc (sno,cno,degree),其中sno,cno,degree分别指:学号,课程号,成绩。请完成如下填空:1)查询所有学生的姓名和年龄:select sname,【】 from student;2)查询所有成绩不低于90分的学生学号和成绩:select sno,degree from sc where【】 。3)查询电子工程系男生的信息:select * from student where sdept='电子工程系’ and 【】。4)计算课程号为C02的学生的平均成绩:select【】from sc where cno='C02' 。5)查询于田田同学的所修课程的学号、课程号和成绩:select sno,cno,degree from student a,sc b where 【】and sname='于田田’