Knowledge Guide
HomeDatabasesSQL Practice Problems

Average Selling Price

Problem

Table: Prices

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| product_id    | int     |
| start_date    | date    |
| end_date      | date    |
| price         | int     |
+---------------+---------+
(product_id, start_date, end_date) is the primary key (combination of columns with unique values) for this table.
Each row of this table indicates the price of the product_id in the period from start_date to end_date.
For each product_id there will be no two overlapping periods. That means there will be no two intersecting periods for the same product_id.

Table: UnitsSold

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| product_id    | int     |
| purchase_date | date    |
| units         | int     |
+---------------+---------+
This table may contain duplicate rows.
Each row of this table indicates the date, units, and product_id of each product sold. 

Problem Definition

Write a solution to find the average selling price for each product. average_price should be rounded to 2 decimal places.

Example

Image
Image

Output

Image
Image

Try It Yourself

java
-- TODO: Write your user queries here

Solution

To calculate the average selling price for each product, considering the various price periods and the number of units sold during those periods, we can follow a structured approach. The solution involves joining the Prices and UnitsSold tables, calculating the total revenue and total units sold for each product, and then computing the average price. If a product has no sales, its average price defaults to 0 as per the provided SQL query.

SQL Query

SELECT p.product_id, IFNULL(Round(Sum(units * price) / Sum(units), 2), 0) AS average_price FROM Prices p LEFT JOIN UnitsSold u ON p.product_id = u.product_id AND u.purchase_date BETWEEN start_date AND end_date GROUP BY product_id;

Step-by-Step Approach

Step 1: Join Prices and UnitsSold Tables

Objective:
Associate each sale in the UnitsSold table with the appropriate price period from the Prices table based on the purchase_date.

SQL Query:

SELECT p.product_id, p.start_date, p.end_date, p.price, u.units, u.purchase_date FROM Prices p LEFT JOIN UnitsSold u ON p.product_id = u.product_id AND u.purchase_date BETWEEN p.start_date AND p.end_date;

Explanation:

Tables After Joining In Step 1:

+------------+------------+------------+-------+-------+---------------+ | product_id | start_date | end_date | price | units | purchase_date | +------------+------------+------------+-------+-------+---------------+ | 1 | 2019-02-17 | 2019-02-28 | 5 | 100 | 2019-02-25 | | 1 | 2019-03-01 | 2019-03-22 | 20 | 15 | 2019-03-01 | | 2 | 2019-02-01 | 2019-02-20 | 15 | 200 | 2019-02-10 | | 2 | 2019-02-21 | 2019-03-31 | 30 | 30 | 2019-03-22 | +------------+------------+------------+-------+-------+---------------+

Step 2: Calculate Average Selling Price

For each product, calculate the average selling price by dividing the total revenue by the total units sold. If a product has no sales, assign an average price of 0.

SQL Query:

SELECT p.product_id, IFNULL(Round(Sum(units * price) / Sum(units), 2), 0) AS average_price FROM Prices p LEFT JOIN UnitsSold u ON p.product_id = u.product_id AND u.purchase_date BETWEEN start_date AND end_date GROUP BY product_id ORDER BY product_id;

Explanation:

Output After Step 2:

+------------+---------------+ | product_id | average_price | +------------+---------------+ | 1 | 6.96 | | 2 | 16.96 | +------------+---------------+
🤖 Don't fully get this? Learn it with Claude

Stuck on Average Selling Price? Open Claude, copy a block below, and it'll teach you this exact concept — visually and interactively.

🎨 Explain it visually

Build the mental picture, not memorization.

I just read a lesson on **Average Selling Price** (Databases) and want to truly understand it. Explain Average Selling Price from first principles using ONE vivid real-world analogy and a visual mental model — draw it as ASCII art or a clear step-by-step diagram — with a concrete example using real numbers. Then ask me one question to check I got the mental picture, and wait for my reply. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🤔 Walk me through it (interactive)

Socratic — adapts to where you're stuck.

Teach me **Average Selling Price** interactively. Ask me ONE guiding question at a time, wait for my answer, and adapt to my confusion — build the idea with me step by step instead of explaining it all at once. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧪 Quiz me & fix my gaps

Active recall exposes what you missed.

Quiz me on **Average Selling Price** with 5 questions, easy to tricky, ONE at a time. Tell me if each answer is right; at the end, explain clearly what I got wrong and why. If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.
🧠 Make it stick

Intuition + hook + flashcards for long-term memory.

Help me remember **Average Selling Price** for the long term: give the one-sentence intuition, a memorable hook/mnemonic, a tiny worked example, and 3 active-recall flashcards (Q -> A). If you're unsure or a claim isn't standard, say so and reason from first principles instead of guessing.

📝 My notes