ORACLE SQL DATABASE BASED ON THE ER MODEL GIVEN BELOW, FIND OR COMPUTE THE FOLLO
ID: 3790477 • Letter: O
Question
ORACLE SQL DATABASE
BASED ON THE ER MODEL GIVEN BELOW, FIND OR COMPUTE THE FOLLOWING SQL QUERIES:
Explanation / Answer
1. select a.name ,b.sum(b.prize) from company a,product b where a.name=b.name
group by a.name order by b.prize
2. select c.name,sum(b.prize) from customer c, product b where c.name=b.name and b.name=' wheat flour '
group by a.name
4. select c.name,sum(b.prize) from customer c, product b where c.name=b.name and b.name=' Bread '
group by a.name
5. select c.name,a.name,d.address from customer c,company a, address d where c.name=a.name
and c.name is NULL and a.name is NULL
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.