Answered step by step
Verified Expert Solution
Link Copied!
Question
1 Approved Answer

A store maintains data on customers, products and purchase records in three tables: CUSTOMER, PRODUCT, PURCHASE. The store manager wants to know which product is

A store maintains data on customers, products and purchase records in three tables: CUSTOMER, PRODUCT, PURCHASE. The store manager wants to know which product is on its maximum discount for each category.Write a query to print the following fields for each category, ordered by productID ascending : category, product_id and discount for the product that has the max discount in category. In the case of multiple products having same max discount within a category, print the product with minimum product_id

CUSTOMER
***************************
CUSTOMER_ID INT
CUSTOMER_NAME STRING
CITY STRING
STATE STRING

PRODUCT
****************************
PRODUCT_ID INT
PRODUCT_NAME STRING
CATEGORY STRING
PRICE INT
DISCOUNT INT
AVAILABLE INT

PURCHASE
****************************
ID INT
CUSTOMER_ID INT
PRODUCT_ID INT
PURCHASE_DATE DATE

The part I would need help with would be how to compare the max discounts and print the min product_id, if the max discount is equal for each category.

Step by Step Solution

3.48 Rating (161 Votes )

There are 3 Steps involved in it

Step: 1 Unlock smart solutions to boost your understanding

Query to print the following fields for each category ordered by productID ascending category produc... blur-text-image
Get Instant Access to Expert-Tailored Solutions

83% of Computer Science Students Improved their GPA!

Step: 2Unlock detailed examples and clear explanations to master concepts

blur-text-image_2

Step: 3Unlock to practice, ask, and learn with real-world examples

blur-text-image_3

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

  • tick Icon Access 30 Million+ textbook solutions.
  • tick Icon Ask unlimited questions from AI Tutors.
  • tick Icon 24/7 Expert guidance tailored to your subject.
  • tick Icon Order free textbooks.

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

Foundations of Marketing

Authors: William M. Pride, O. C. Ferrell

3rd Edition

618973370, 547154569, 9780618973378, 978-0547154565

More Books

Students explore these related Programming questions