返回介绍

solution / 0500-0599 / 0597.Friend Requests I Overall Acceptance Rate / README_EN

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

597. Friend Requests I Overall Acceptance Rate

中文文档

Description

Table: FriendRequest

+----------------+---------+
| Column Name  | Type  |
+----------------+---------+
| sender_id    | int   |
| send_to_id   | int   |
| request_date   | date  |
+----------------+---------+
This table may contain duplicates (In other words, there is no primary key for this table in SQL).
This table contains the ID of the user who sent the request, the ID of the user who received the request, and the date of the request.

 

Table: RequestAccepted

+----------------+---------+
| Column Name  | Type  |
+----------------+---------+
| requester_id   | int   |
| accepter_id  | int   |
| accept_date  | date  |
+----------------+---------+
This table may contain duplicates (In other words, there is no primary key for this table in SQL).
This table contains the ID of the user who sent the request, the ID of the user who received the request, and the date when the request was accepted.

 

Find the overall acceptance rate of requests, which is the number of acceptance divided by the number of requests. Return the answer rounded to 2 decimals places.

Note that:

  • The accepted requests are not necessarily from the table friend_request. In this case, Count the total accepted requests (no matter whether they are in the original requests), and divide it by the number of requests to get the acceptance rate.
  • It is possible that a sender sends multiple requests to the same receiver, and a request could be accepted more than once. In this case, the ‘duplicated’ requests or acceptances are only counted once.
  • If there are no requests at all, you should return 0.00 as the accept_rate.

The result format is in the following example.

 

Example 1:

Input: 
FriendRequest table:
+-----------+------------+--------------+
| sender_id | send_to_id | request_date |
+-----------+------------+--------------+
| 1     | 2      | 2016/06/01   |
| 1     | 3      | 2016/06/01   |
| 1     | 4      | 2016/06/01   |
| 2     | 3      | 2016/06/02   |
| 3     | 4      | 2016/06/09   |
+-----------+------------+--------------+
RequestAccepted table:
+--------------+-------------+-------------+
| requester_id | accepter_id | accept_date |
+--------------+-------------+-------------+
| 1      | 2       | 2016/06/03  |
| 1      | 3       | 2016/06/08  |
| 2      | 3       | 2016/06/08  |
| 3      | 4       | 2016/06/09  |
| 3      | 4       | 2016/06/10  |
+--------------+-------------+-------------+
Output: 
+-------------+
| accept_rate |
+-------------+
| 0.8     |
+-------------+
Explanation: 
There are 4 unique accepted requests, and there are 5 requests in total. So the rate is 0.80.

 

Follow up:

  • Could you find the acceptance rate for every month?
  • Could you find the cumulative acceptance rate for every day?

Solutions

Solution 1

# Write your MySQL query statement below
SELECT
  ROUND(
    IFNULL(
      (
        SELECT COUNT(DISTINCT requester_id, accepter_id)
        FROM RequestAccepted
      ) / (SELECT COUNT(DISTINCT sender_id, send_to_id) FROM FriendRequest),
      0
    ),
    2
  ) AS accept_rate;

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

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

发布评论

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