Product's Worth Over Invoices Problem
Description
LeetCode Problem 1677.
Table: Product
1
2
3
4
5
6
7
8
+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| product_id  | int     |
| name        | varchar |
+-------------+---------+
product_id is the primary key for this table.
This table contains the ID and the name of the product. The name consists of only lowercase English letters. No two products have the same name.
Table: Invoice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
+-------------+------+
| Column Name | Type |
+-------------+------+
| invoice_id  | int  |
| product_id  | int  |
| rest        | int  |
| paid        | int  |
| canceled    | int  |
| refunded    | int  |
+-------------+------+
invoice_id is the primary key for this table and the id of this invoice.
product_id is the id of the product for this invoice.
rest is the amount left to pay for this invoice.
paid is the amount paid for this invoice.
canceled is the amount canceled for this invoice.
refunded is the amount refunded for this invoice.
Write an SQL query that will, for all products, return each product name with total amount due, paid, canceled, and refunded across all invoices.
Return the result table ordered by product_name.
The query result format is in the following example:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Product table:
+------------+-------+
| product_id | name  |
+------------+-------+
| 0          | ham   |
| 1          | bacon |
+------------+-------+
Invoice table:
+------------+------------+------+------+----------+----------+
| invoice_id | product_id | rest | paid | canceled | refunded |
+------------+------------+------+------+----------+----------+
| 23         | 0          | 2    | 0    | 5        | 0        |
| 12         | 0          | 0    | 4    | 0        | 3        |
| 1          | 1          | 1    | 1    | 0        | 1        |
| 2          | 1          | 1    | 0    | 1        | 1        |
| 3          | 1          | 0    | 1    | 1        | 1        |
| 4          | 1          | 1    | 1    | 1        | 0        |
+------------+------------+------+------+----------+----------+
Result table:
+-------+------+------+----------+----------+
| name  | rest | paid | canceled | refunded |
+-------+------+------+----------+----------+
| bacon | 3    | 3    | 3        | 3        |
| ham   | 2    | 4    | 5        | 3        |
+-------+------+------+----------+----------+
- The amount of money left to pay for bacon is 1 + 1 + 0 + 1 = 3
- The amount of money paid for bacon is 1 + 0 + 1 + 1 = 3
- The amount of money canceled for bacon is 0 + 1 + 1 + 1 = 3
- The amount of money refunded for bacon is 1 + 1 + 1 + 0 = 3
- The amount of money left to pay for ham is 2 + 0 = 2
- The amount of money paid for ham is 0 + 4 = 4
- The amount of money canceled for ham is 5 + 0 = 5
- The amount of money refunded for ham is 0 + 3 = 3
MySQL Solution
1
2
3
4
5
6
7
8
9
select p.name as name, 
    sum(i.rest) as rest,
    sum(i.paid) as paid, 
    sum(i.canceled) as canceled,
    sum(i.refunded) as refunded
from Invoice i
left join Product p on p.product_id = i.product_id
group by name
order by name
    LeetCode Database - Easy
    
    
        LeetCode 1407
    
    
        LeetCode 1435
    
    
        LeetCode 1484
    
    
        LeetCode 1495
    
    
        LeetCode 1511
    
    
        LeetCode 1517
    
    
        LeetCode 1527
    
    
        LeetCode 1543
    
    
        LeetCode 1565
    
    
        LeetCode 1571
    
    
        LeetCode 1581
    
    
        LeetCode 1587
    
    
        LeetCode 1607
    
    
        LeetCode 1623
    
    
        LeetCode 1633
    
    
        LeetCode 1661
    
    
        LeetCode 1667
    
    
        LeetCode 1677
    
    
        LeetCode 1683
    
    
        LeetCode 1693
    
    
        LeetCode 1729
    
    
        LeetCode 1731
    
    
        LeetCode 1741
    
    
        LeetCode 1757
    
    
        LeetCode 1777
    
    
        LeetCode 1789
    
    
        LeetCode 1795
    
    
        LeetCode 1809
    
    More LeetCode Database
    MySQL Tutorials