1、select 姓名 from 学生表 where 系别 = '计算机系';
2、select 学号 from 学生选课表 where 成绩 < 60 ;
3、select 学号,成绩 from 学生选课表 where 课程号=1;
4、select 学生表.姓名,学生选课表.课程号,学生选课表.成绩 from 学生表,学生选课表 where 学生表.学号 = 学生选课表.学号;
5、select 姓名,年龄,性别 from 学生表 where 年龄 > (select 年龄 from 学生表 where name = '李明');