已知课程数据库中有三个表,分别是学生表,课程表,选课表,试编写sol语句,实现以下操

2025-01-06 13:11:56
推荐回答(2个)
回答1:

1.select t.* from 学生表 t;
2.select t.成绩 from 选课表 where t.学号=081101
3.select t.姓名 from 学生表 where t.学号=081101

回答2:

1.学生表∞ 课程表∞ 选课表   
2.π成绩(σ学号=‘081101‘(学生表))
3.π姓名,课程号,成绩((σ学号=‘081101‘(学生表))∞课程表∞选课表)