[LeetCode] 1934. Confirmation Rate - SQL

Donghyun·2024년 8월 18일
0

Code Kata - SQL

목록 보기
43/61
post-thumbnail

링크: https://leetcode.com/problems/confirmation-rate/

Table: Signups

+----------------+----------+
| Column Name    | Type     |
+----------------+----------+
| user_id        | int      |
| time_stamp     | datetime |
+----------------+----------+
user_id is the column of unique values for this table.
Each row contains information about the signup time for the user with ID user_id.

Table: Confirmations

+----------------+----------+
| Column Name    | Type     |
+----------------+----------+
| user_id        | int      |
| time_stamp     | datetime |
| action         | ENUM     |
+----------------+----------+
(user_id, time_stamp) is the primary key (combination of columns with unique values) for this table.
user_id is a foreign key (reference column) to the Signups table.
action is an ENUM (category) of the type ('confirmed', 'timeout')
Each row of this table indicates that the user with ID user_id requested a confirmation message at time_stamp and that confirmation message was either confirmed ('confirmed') or expired without confirming ('timeout').

The confirmation rate of a user is the number of 'confirmed' messages divided by the total number of requested confirmation messages. The confirmation rate of a user that did not request any confirmation messages is 0. Round the confirmation rate to two decimal places.

Write a solution to find the confirmation rate of each user.

Return the result table in any order.

The result format is in the following example.

Example 1:

Input:
Signups table:
+---------+---------------------+
| user_id | time_stamp          |
+---------+---------------------+
| 3       | 2020-03-21 10:16:13 |
| 7       | 2020-01-04 13:57:59 |
| 2       | 2020-07-29 23:09:44 |
| 6       | 2020-12-09 10:39:37 |
+---------+---------------------+
Confirmations table:
+---------+---------------------+-----------+
| user_id | time_stamp          | action    |
+---------+---------------------+-----------+
| 3       | 2021-01-06 03:30:46 | timeout   |
| 3       | 2021-07-14 14:00:00 | timeout   |
| 7       | 2021-06-12 11:57:29 | confirmed |
| 7       | 2021-06-13 12:58:28 | confirmed |
| 7       | 2021-06-14 13:59:27 | confirmed |
| 2       | 2021-01-22 00:00:00 | confirmed |
| 2       | 2021-02-28 23:59:59 | timeout   |
+---------+---------------------+-----------+
Output:
+---------+-------------------+
| user_id | confirmation_rate |
+---------+-------------------+
| 6       | 0.00              |
| 3       | 0.00              |
| 7       | 1.00              |
| 2       | 0.50              |
+---------+-------------------+
Explanation:
User 6 did not request any confirmation messages. The confirmation rate is 0.
User 3 made 2 requests and both timed out. The confirmation rate is 0.
User 7 made 3 requests and all were confirmed. The confirmation rate is 1.
User 2 made 2 requests where one was confirmed and the other timed out. The confirmation rate is 1 / 2 = 0.5.

문제풀이

목표: 각 사용자의 확인율을 찾는 솔루션을 작성

  • 사용자의 확인율은 요청된 확인 메시지의 총 수로 나눈 'confirmed' 메시지의 수.
  • 확인 메시지를 요청하지 않은 사용자의 확인율은 0.
  • 확인율은 소수점 둘째 자리까지 반올림.

최종코드

SELECT
    s.user_id,
    COALESCE(ROUND(SUM(CASE WHEN c.action = 'confirmed' THEN 1 ELSE 0 END) / COUNT(c.user_id), 2), 0.00) confirmation_rate
FROM Confirmations c
    RIGHT JOIN Signups s
    ON c.user_id = s.user_id
GROUP BY s.user_id

설명:

SELECT 절의 확인율 구하는 부분

COALESCE(ROUND(SUM(CASE WHEN c.action = 'confirmed' THEN 1 ELSE 0 END) / COUNT(c.user_id), 2), 0.00) confirmation_rate
  • CASE WHEN 을 사용하여 각 사용자의 confirmed 요청 수를 계산
  • COUNT(c.user_id) 를 사용하여 각 사용자의 총 요청 수를 계산
  • ROUND 함수를 사용하여 소수점 둘째 자리까지 반올림
  • 그리고 user_id 6 처럼 요청을 하지 않은 경우 NULL 이 발생하는데, COALESCE 를 사용하여 해당 사용자의 확인율을 0으로 설정.
profile
데이터분석 공부 일기~!

0개의 댓글