有三个表:学生表、课程表和学生选课表,它们的结构如下: 学生表(学号,姓名,性别,年龄,系别) 课程

2024-12-18 05:33:39
推荐回答(1个)
回答1:

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 = '李明');