--设有三个关系 --S(S#,SNAME,AGE,SEX) --SC(S#,C#,GRADE) --C(C#,CNAME,TEACHER) --(1)检索LIU老师所授课程的课程号.课程名 select c#,cname from c where teacher='LIU' --(2)检索年龄大于23岁的男同学的学号和姓名 select s#,sname from s where age>23 and sex='男' --(3)检索学号为S3学生所学课程的课程名与任课教师名 select cn…