Interview Query

Distance Traveled

Start Timer

0:00:00

Upvote
41
Downvote
Save question
Mark as completed
View comments (75)
Next question

Given the tables users and rides, write a query to report the distance traveled by each user in descending order.

Example:

Input:

users table

Column Type
id INTEGER
name INTEGER

rides table

Column Type
id INTEGER
passenger_user_id INTEGER
distance FLOAT

Output:

Column Type
name VARCHAR
distance_traveled FLOAT
.
.
.
.
.


Comments

Loading comments