edited by
736 views
0 votes
0 votes
Consider the following collection of relation schemes:
professor(profname, deptname)
department(deptname, building)
committee(profname,commname)
Find all the professors who are in exactly (i.e., no more and no less) all those committees that Professor Smith is in.
A
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)
 
edited by

Please log in or register to answer this question.

Related questions

–1 votes
–1 votes
0 answers
1
Himanshu Kashyap asked Jan 12, 2019
676 views
PLEASE EXPLAIN WHEATHER IT WOULD BE SOME EC DEPARMENT OR ALL EC DEPARTMENT I THINK ALL BECOZ IT IS SELECTION EID OF STUDENT WHO HAVE NOT ENROLLED IN ANY COURSE OF EC
1 votes
1 votes
0 answers
3
1 votes
1 votes
0 answers
4