Question
relational algebra questions: Using the supplier-part database provided below, answer each of the following relational algebra questions. (Note: Does not require the use of SQL
relational algebra questions: Using the supplier-part database provided below, answer each of the following relational algebra questions. (Note: Does not require the use of SQL or any database software. The results must be manually generated.)
please show work to help me understand
1. Show the result of a one-sided outer join between the S (supplier) and SP (supplier-part) tables. Preserve the rows of the S table in the result.
2. Show the result of a full outer join between the S (supplier) and P (part) tables using the common CITY column.
3. Show the result of a summarize operation on P table. The grouping column is CITY and the aggregate calculation is COUNT.
4. Show the result of a summarize operation on S. The grouping column is CITY and the aggregate calculations are the minimum and maximum STATUS values.
5. Show SNO of supplier(s) who supplied all parts in P table. That is, show the result of the divide operation in which SP table (with SNO and PNO columns) is divided by P table (with PNO column).
S Table (for Suppliers) ======================= SNO SNAME STATUS CITY ======================= S1 Smith 20 London S2 Jones 10 Paris S3 Blake 30 Paris S4 Clark 20 London S5 Adams 30 Athens ======================= P Table (for Parts) ============================= PNO PNAME COLOR WEIGHT CITY ============================= P1 Nut Red 12 London P2 Bolt Green 17 Paris P3 Screw Blue 17 Rome P4 Screw Red 14 London P5 Cam Blue 12 Paris P6 Cog Red 19 London ============================= SP Table =========== SNO PNO QTY =========== S1 P1 300 S1 P2 200 S1 P3 400 S1 P4 200 S1 P5 100 S1 P6 100 S2 P1 300 S2 P2 400 S3 P2 200 S4 P2 200 S4 P4 300 S4 P5 400 =========== info: (QTY stands for quantity.) SP table shows which supplier (SNO) supplied how many units (QTY) of which part (PNO).
More similar question need help:
https://www.chegg.com/homework-help/questions-and-answers/relational-algebra-questions-using-supplier-part-database-provided-answer-following-relati-q22449499
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started