1407. Top Travellers
Description
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| id | int |
| name | varchar |
+---------------+---------+
id is the primary key for this table.
name is the name of the user.+---------------+---------+
| Column Name | Type |
+---------------+---------+
| id | int |
| user\_id | int |
| distance | int |
+---------------+---------+
id is the primary key for this table.
user\_id is the id of the user who travelled the distance "distance".ac
Last updated