0% found this document useful (0 votes)
56 views1 page

Consider The Above Schema and Answer The Following Questions (1-15) Using Relational Algebraic Form

The document provides the schema for three relations: Suppliers, Parts, and Catalog. It then lists 15 questions to answer using relational algebra on the given schema. The questions involve finding supplier IDs, part IDs, and supplier names based on conditions like supplying red or green parts, part costs, supplier addresses, and more.

Uploaded by

Bino
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views1 page

Consider The Above Schema and Answer The Following Questions (1-15) Using Relational Algebraic Form

The document provides the schema for three relations: Suppliers, Parts, and Catalog. It then lists 15 questions to answer using relational algebra on the given schema. The questions involve finding supplier IDs, part IDs, and supplier names based on conditions like supplying red or green parts, part costs, supplier addresses, and more.

Uploaded by

Bino
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Kathmandu University

Department of Computer Science and Engineering


COMP 232 – Assignment.

Consider the above schema and answer the following questions(1-15) using relational
algebraic form:

Suppliers(sid: integer, sname: string, address: string)


Parts(pid: integer, pname: string, color: string)
Catalog(sid: integer, pid: integer, cost: real)
1. Find the names of suppliers who supply some red part.
2. Find the sids of suppliers who supply some red or green part.
3. Find the sids of suppliers who supply some red part or are at 221 Packer Street.
4. Find the sids of suppliers who supply some red part and some green part.
5. Find the sids of suppliers who supply every part.
6. Find the sids of suppliers who supply every red part.
7. Find the sids of suppliers who supply every red or green part.
8. Find the sids of suppliers who supply every red part or supply every green part.
9. Find pairs of sids such that the supplier with the first sid charges more for some part than
the supplier with the second sid.
10. Find the pids of parts supplied by at least two different suppliers.
11. Find the pids of the most expensive parts supplied by suppliers named Yosemite Sham.
12. Find the pids of parts supplied by every supplier at less than $200. (If any supplier either
does not supply the part or charges more than $200 for it, the part is not selected.)
13. Find the Supplier names of the suppliers who supply a red part that costs less than 100
dollars.
14. Find the Supplier names of the suppliers who supply a red part that costs less than 100
dollars and a green part that costs less than 100 dollars.
15. Find the Supplier names of the suppliers who supply a red part that costs less than 100
dollars and a green part that costs less than 100 dollars.

You might also like