考虑以下关系方案的集合:
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)
这个问题的测验