1635. Hopper Company Queries I

https://leetcode.com/problems/hopper-company-queries-i

Description

Table: Drivers

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| driver\_id   | int     |
| join\_date   | date    |
+-------------+---------+
driver\_id is the primary key for this table.
Each row of this table contains the driver's ID and the date they joined the Hopper company.

Table: Rides

+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| ride\_id      | int     |
| user\_id      | int     |
| requested\_at | date    |
+--------------+---------+
ride\_id is the primary key for this table.
Each row of this table contains the ID of a ride, the user's ID that requested it, and the day they requested it.
There may be some ride requests in this table that were not accepted.

Table: AcceptedRides

Write an SQL query to report the following statistics for each month of 2020:

  • The number of drivers currently with the Hopper company by the end of the month (active_drivers).

  • The number of accepted rides in that month (accepted_rides).

Return the result table ordered by month in ascending order, where month is the month's number (January is 1, February is 2, etc.).

The query result format is in the following example.

ac

Last updated

Was this helpful?