针对书上的学生选课数据库 S_T,用关系代数和 SQL 语言完成以下查询:1、查询“CS”系所有学生的学号和姓名
2、Slelect sno,sname from student where sdept =’CS’3、查询所有姓“刘”的学生的信息
4、Select * from student where sname like ‘刘%’5、查询年龄在 18 至 20 岁之间的学生信息
6、Select * from student where sage between 18 and 207、查询不在“CS”系也不在“MA”系的学生的所有信息
8、Select * from student where sdept not in (‘CS’,’MA’)9、查询“CS”系所有学生的平均年龄
10、Select avg(sage) from student where sdept like ‘CS’11、查询课程名是以“系统”结尾的课程信息
12、Select * from course where cname like ‘%系统’13、查询先行课为“6”号课程的课程信息
14、Select * from course where cpno=615、查询间接先行课为“5”号课程的课程号及课程名
16、Select , from c c1,c c2 where = and =5 17、Select cno ,cname from course where cpno in (select cno from course where cpno=5)18、查询没有先行课的课程名
19、Select cname from course where cpno is null20、查询选修了“1”号课程的学生选课信息
21、Select * from sc where cno=122、查询成绩