I have the following tables:
Suppliers(Sno, Sname, Address)
Parts(Pno, Pname, Colour)
Catalogue(Sno, Pno, Price)
I want to find the name of all suppliers who is supplying all the parts of a particular color say "BLUE"?
I want to solve it using logical operators like AND, OR, NOT etc and select, project or join operations.