Skip to content

Commit 2eac39d

Browse files
Trips and Users
1 parent d39b137 commit 2eac39d

File tree

2 files changed

+72
-2
lines changed

2 files changed

+72
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
/*
2+
Trips and Users
3+
https://leetcode.com/problems/trips-and-users/
4+
5+
SQL Schema
6+
The Trips table holds all taxi trips. Each trip has a unique Id, while Client_Id and Driver_Id are both foreign keys to the Users_Id at the Users table. Status is an ENUM type of (‘completed’, ‘cancelled_by_driver’, ‘cancelled_by_client’).
7+
8+
+----+-----------+-----------+---------+--------------------+----------+
9+
| Id | Client_Id | Driver_Id | City_Id | Status |Request_at|
10+
+----+-----------+-----------+---------+--------------------+----------+
11+
| 1 | 1 | 10 | 1 | completed |2013-10-01|
12+
| 2 | 2 | 11 | 1 | cancelled_by_driver|2013-10-01|
13+
| 3 | 3 | 12 | 6 | completed |2013-10-01|
14+
| 4 | 4 | 13 | 6 | cancelled_by_client|2013-10-01|
15+
| 5 | 1 | 10 | 1 | completed |2013-10-02|
16+
| 6 | 2 | 11 | 6 | completed |2013-10-02|
17+
| 7 | 3 | 12 | 6 | completed |2013-10-02|
18+
| 8 | 2 | 12 | 12 | completed |2013-10-03|
19+
| 9 | 3 | 10 | 12 | completed |2013-10-03|
20+
| 10 | 4 | 13 | 12 | cancelled_by_driver|2013-10-03|
21+
+----+-----------+-----------+---------+--------------------+----------+
22+
The Users table holds all users. Each user has an unique Users_Id, and Role is an ENUM type of (‘client’, ‘driver’, ‘partner’).
23+
24+
+----------+--------+--------+
25+
| Users_Id | Banned | Role |
26+
+----------+--------+--------+
27+
| 1 | No | client |
28+
| 2 | Yes | client |
29+
| 3 | No | client |
30+
| 4 | No | client |
31+
| 10 | No | driver |
32+
| 11 | No | driver |
33+
| 12 | No | driver |
34+
| 13 | No | driver |
35+
+----------+--------+--------+
36+
Write a SQL query to find the cancellation rate of requests made by unbanned users (both client and driver must be unbanned) between Oct 1, 2013 and Oct 3, 2013. The cancellation rate is computed by dividing the number of canceled (by client or driver) requests made by unbanned users by the total number of requests made by unbanned users.
37+
38+
For the above tables, your SQL query should return the following rows with the cancellation rate being rounded to two decimal places.
39+
40+
+------------+-------------------+
41+
| Day | Cancellation Rate |
42+
+------------+-------------------+
43+
| 2013-10-01 | 0.33 |
44+
| 2013-10-02 | 0.00 |
45+
| 2013-10-03 | 0.50 |
46+
+------------+-------------------+
47+
*/
48+
49+
-- solution 1
50+
SELECT trips_per_date.Request_at AS "Day", Round(coalesce(cancelled_trips.count_of_cancelled_trips, 0) / trips_per_date.count_of_trips, 2) as "Cancellation Rate"
51+
FROM (
52+
SELECT Trips.Request_at, count(*) as count_of_cancelled_trips
53+
FROM Trips JOIN Users as users_drivers ON Trips.Driver_Id = users_drivers.Users_Id JOIN Users as users_clients ON Trips.Client_Id = users_clients.Users_Id
54+
WHERE users_drivers.Banned = "No" AND users_clients.Banned = "No" AND (Trips.Status = "cancelled_by_driver" OR Trips.Status = "cancelled_by_client")
55+
GROUP BY Trips.Request_at
56+
) as cancelled_trips RIGHT JOIN (
57+
SELECT Request_at, count(*) as count_of_trips
58+
FROM Trips JOIN Users as users_drivers ON Trips.Driver_Id = users_drivers.Users_Id JOIN Users as users_clients ON Trips.Client_Id = users_clients.Users_Id
59+
WHERE users_drivers.Banned = "No" AND users_clients.Banned = "No"
60+
Group by Request_at
61+
) as trips_per_date ON cancelled_trips.Request_at = trips_per_date.Request_at
62+
WHERE trips_per_date.Request_at >= Date("2013-10-01") AND trips_per_date.Request_at <= Date("2013-10-03")
63+
ORDER BY trips_per_date.Request_at
64+
65+
-- solution 2
66+
SELECT Trips.Request_at AS "Day", ROUND(count(IF(Trips.Status = "cancelled_by_driver" OR Trips.Status = "cancelled_by_client",TRUE,null)) / count(*), 2) as "Cancellation Rate"
67+
FROM Trips JOIN Users as users_drivers ON Trips.Driver_Id = users_drivers.Users_Id JOIN Users as users_clients ON Trips.Client_Id = users_clients.Users_Id
68+
WHERE users_drivers.Banned = "No" AND users_clients.Banned = "No" -- AND ()
69+
AND Trips.Request_at >= Date("2013-10-01") AND Trips.Request_at <= Date("2013-10-03")
70+
GROUP BY Trips.Request_at
71+
ORDER BY Trips.Request_at

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ To run a specific problem in your console, go to the file test, add the call to
8181
### Databases
8282
| Problems | Level | Link |
8383
|-|-|-|
84-
Human Traffic of Stadium
85-
84+
| [Trips and Users](/LeetcodeProblems/Databases/Trips_and_Users.sql) | Hard | https://leetcode.com/problems/trips-and-users/ |
8685
| [Human Traffic of Stadium](/LeetcodeProblems/Databases/Human_Traffic_of_Stadium.sql) | Hard | https://leetcode.com/problems/human-traffic-of-stadium |
8786
| [Rank Scores](/LeetcodeProblems/Databases/Rank_Scores.sql) | Medium | https://leetcode.com/problems/rank-scores |
8887
| [Consecutive Numbers](/LeetcodeProblems/Databases/Consecutive_Numbers.sql) | Medium | https://leetcode.com/problems/consecutive-numbers |

0 commit comments

Comments
 (0)