Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

E 5 . 1 . 2 2 Display the ProductID and ProductName of the product for the products whose total quantity sold in all transactions

E5.1.22 Display the ProductID and ProductName of the product for the products whose total quantity sold in all transactions
is greater than 2. Sort the results by ProductID.
E5.1.24 Rewrite Query 30 using a join statement (no nested queries). Query 30 text: For each product that has more than three items
sold within all
sales transactions, retrieve the product ID, product name, and
product price
Query 30: SELECT productid, productname, productprice
FROM product
WHERE productid IN
(SELECT productid
FROM includes
GROUP BY productid
HAVING SUM(quantity)>3);
E5.1.25 Rewrite Query 31 using a join statement (no nested queries). Query 31 text: For each product whose items were sold in more
than one sales transaction, retrieve the product id, product
name and
product price
Query 31 : SELECT productid, productname, productprice
FROM product
WHERE productid IN
(SELECT productid
FROM includes
GROUP BY productid
HAVING COUNT(*)>1);

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions