📌  相关文章
📜  门| Sudo GATE 2020 Mock II(2019 年 1 月 10 日)|第 36 题

📅  最后修改于: 2021-09-25 04:45:58             🧑  作者: Mango

考虑以下关系方案的集合:

professor(profname, deptname)
department(deptname, building)
committee(profname,commname) 

找出史密斯教授所在的所有委员会中(即不多也不少)的所有教授。
(一种)

R2 commname(Πprofname(committee))
R3 commname(committee) - R2
(committee / R2) - σprofname = Smith(committee ⋈ R3)

(乙)

R2 commname(Πcommname(committee))
R3 profname = Smith(committee) - R2
(committee / R2) - Πprofname(committee ⋈ R3)

(C)

R2 commname(σprofname = Smith(committee))
R3 commname(committee) - R2
(committee / R2) - Πprofname(committee ⋈ R3)

(D)以上都不是。答案: (C)
解释:选项(C)是正确的。

R2 commname(σprofname = Smith(committee))
R3 commname(committee) - R2
(committee / R2) - Πprofname(committee ⋈ R3) 

这个问题的测验