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

📅  最后修改于: 2021-06-28 23:53:32             🧑  作者: Mango

考虑以下关系方案集合:

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

查找与史密斯教授所属的所有委员会完全相同(即,不多也不少)的所有教授。
(一种)

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

(B)

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) 

这个问题的测验