返回介绍

solution / 1300-1399 / 1336.Number of Transactions per Visit / README_EN

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

1336. Number of Transactions per Visit

中文文档

Description

Table: Visits

+---------------+---------+
| Column Name   | Type  |
+---------------+---------+
| user_id     | int   |
| visit_date  | date  |
+---------------+---------+
(user_id, visit_date) is the primary key (combination of columns with unique values) for this table.
Each row of this table indicates that user_id has visited the bank in visit_date.

 

Table: Transactions

+------------------+---------+
| Column Name    | Type  |
+------------------+---------+
| user_id      | int   |
| transaction_date | date  |
| amount       | int   |
+------------------+---------+
This table may contain duplicates rows.
Each row of this table indicates that user_id has done a transaction of amount in transaction_date.
It is guaranteed that the user has visited the bank in the transaction_date.(i.e The Visits table contains (user_id, transaction_date) in one row)

 

A bank wants to draw a chart of the number of transactions bank visitors did in one visit to the bank and the corresponding number of visitors who have done this number of transaction in one visit.

Write a solution to find how many users visited the bank and didn't do any transactions, how many visited the bank and did one transaction, and so on.

The result table will contain two columns:

  • transactions_count which is the number of transactions done in one visit.
  • visits_count which is the corresponding number of users who did transactions_count in one visit to the bank.

transactions_count should take all values from 0 to max(transactions_count) done by one or more users.

Return the result table ordered by transactions_count.

The result format is in the following example.

 

Example 1:

Input: 
Visits table:
+---------+------------+
| user_id | visit_date |
+---------+------------+
| 1     | 2020-01-01 |
| 2     | 2020-01-02 |
| 12    | 2020-01-01 |
| 19    | 2020-01-03 |
| 1     | 2020-01-02 |
| 2     | 2020-01-03 |
| 1     | 2020-01-04 |
| 7     | 2020-01-11 |
| 9     | 2020-01-25 |
| 8     | 2020-01-28 |
+---------+------------+
Transactions table:
+---------+------------------+--------+
| user_id | transaction_date | amount |
+---------+------------------+--------+
| 1     | 2020-01-02     | 120  |
| 2     | 2020-01-03     | 22   |
| 7     | 2020-01-11     | 232  |
| 1     | 2020-01-04     | 7    |
| 9     | 2020-01-25     | 33   |
| 9     | 2020-01-25     | 66   |
| 8     | 2020-01-28     | 1    |
| 9     | 2020-01-25     | 99   |
+---------+------------------+--------+
Output: 
+--------------------+--------------+
| transactions_count | visits_count |
+--------------------+--------------+
| 0          | 4      |
| 1          | 5      |
| 2          | 0      |
| 3          | 1      |
+--------------------+--------------+
Explanation: The chart drawn for this example is shown above.
* For transactions_count = 0, The visits (1, "2020-01-01"), (2, "2020-01-02"), (12, "2020-01-01") and (19, "2020-01-03") did no transactions so visits_count = 4.
* For transactions_count = 1, The visits (2, "2020-01-03"), (7, "2020-01-11"), (8, "2020-01-28"), (1, "2020-01-02") and (1, "2020-01-04") did one transaction so visits_count = 5.
* For transactions_count = 2, No customers visited the bank and did two transactions so visits_count = 0.
* For transactions_count = 3, The visit (9, "2020-01-25") did three transactions so visits_count = 1.
* For transactions_count >= 4, No customers visited the bank and did more than three transactions so we will stop at transactions_count = 3

Solutions

Solution 1

# Write your MySQL query statement below
WITH RECURSIVE
  S AS (
    SELECT 0 AS n
    UNION
    SELECT n + 1
    FROM S
    WHERE
      n < (
        SELECT MAX(cnt)
        FROM
          (
            SELECT COUNT(1) AS cnt
            FROM Transactions
            GROUP BY user_id, transaction_date
          ) AS t
      )
  ),
  T AS (
    SELECT v.user_id, visit_date, IFNULL(cnt, 0) AS cnt
    FROM
      Visits AS v
      LEFT JOIN (
        SELECT user_id, transaction_date, COUNT(1) AS cnt
        FROM Transactions
        GROUP BY 1, 2
      ) AS t
        ON v.user_id = t.user_id AND v.visit_date = t.transaction_date
  )
SELECT n AS transactions_count, COUNT(user_id) AS visits_count
FROM
  S AS s
  LEFT JOIN T AS t ON s.n = t.cnt
GROUP BY n
ORDER BY n;

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

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

发布评论

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