0597. Friend Requests I: Overall Acceptance Rate
Description
+----------------+---------+
| Column Name | Type |
+----------------+---------+
| sender\_id | int |
| send\_to\_id | int |
| request\_date | date |
+----------------+---------+
There is no primary key for this table, it may contain duplicates.
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.+----------------+---------+
| Column Name | Type |
+----------------+---------+
| requester\_id | int |
| accepter\_id | int |
| accept\_date | date |
+----------------+---------+
There is no primary key for this table, it may contain duplicates.
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.ac
Last updated