9、select student.*,s_score from student,score where student.s_id=score.s_id and s_score<60 and c_id='01' order by s_score desc;关系代数表达式
时间: 2023-06-16 08:04:19 浏览: 99
【学习数据库】关系代数
5星 · 资源好评率100%
这个 SQL 查询语句对应的关系代数表达式如下:
π<sub>student.*, s_score</sub> (σ<sub>s_score<60 ∧c_id='01'</sub> (student ⨯ score)) ⋈<sub>s_id</sub> student
其中,π 表示投影操作,σ 表示选择操作,⨯ 表示自然连接操作,⋈ 表示等值连接操作。
阅读全文