返回介绍

solution / 2300-2399 / 2324.Product Sales Analysis IV / README_EN

发布于 2024-06-17 01:03:07 字数 3093 浏览 0 评论 0 收藏 0

2324. Product Sales Analysis IV

中文文档

Description

Table: Sales

+-------------+-------+
| Column Name | Type  |
+-------------+-------+
| sale_id   | int   |
| product_id  | int   |
| user_id   | int   |
| quantity  | int   |
+-------------+-------+
sale_id contains unique values.
product_id is a foreign key (reference column) to Product table.
Each row of this table shows the ID of the product and the quantity purchased by a user.

 

Table: Product

+-------------+------+
| Column Name | Type |
+-------------+------+
| product_id  | int  |
| price     | int  |
+-------------+------+
product_id contains unique values.
Each row of this table indicates the price of each product.

 

Write a solution that reports for each user the product id on which the user spent the most money. In case the same user spent the most money on two or more products, report all of them.

Return the resulting table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Sales table:
+---------+------------+---------+----------+
| sale_id | product_id | user_id | quantity |
+---------+------------+---------+----------+
| 1     | 1      | 101   | 10     |
| 2     | 3      | 101   | 7    |
| 3     | 1      | 102   | 9    |
| 4     | 2      | 102   | 6    |
| 5     | 3      | 102   | 10     |
| 6     | 1      | 102   | 6    |
+---------+------------+---------+----------+
Product table:
+------------+-------+
| product_id | price |
+------------+-------+
| 1      | 10  |
| 2      | 25  |
| 3      | 15  |
+------------+-------+
Output: 
+---------+------------+
| user_id | product_id |
+---------+------------+
| 101   | 3      |
| 102   | 1      |
| 102   | 2      |
| 102   | 3      |
+---------+------------+ 
Explanation: 
User 101:
  - Spent 10 * 10 = 100 on product 1.
  - Spent 7 * 15 = 105 on product 3.
User 101 spent the most money on product 3.
User 102:
  - Spent (9 + 7) * 10 = 150 on product 1.
  - Spent 6 * 25 = 150 on product 2.
  - Spent 10 * 15 = 150 on product 3.
User 102 spent the most money on products 1, 2, and 3.

Solutions

Solution 1

# Write your MySQL query statement below
WITH
  T AS (
    SELECT
      user_id,
      product_id,
      RANK() OVER (
        PARTITION BY user_id
        ORDER BY SUM(quantity * price) DESC
      ) AS rk
    FROM
      Sales
      JOIN Product USING (product_id)
    GROUP BY 1, 2
  )
SELECT user_id, product_id
FROM T
WHERE rk = 1;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文