"content":"<p>Table: <code>Users</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| name | varchar |\n+---------------+---------+\nid is the column with unique values for this table.\nname is the name of the user.\n</pre>\n\n<p> </p>\n\n<p>Table: <code>Rides</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| user_id | int |\n| distance | int |\n+---------------+---------+\nid is the column with unique values for this table.\nuser_id is the id of the user who traveled the distance "distance".\n</pre>\n\n<p> </p>\n\n<p>Write a solution to report the distance traveled by each user.</p>\n\n<p>Return the result table ordered by <code>travelled_distance</code> in <strong>descending order</strong>, if two or more users traveled the same distance, order them by their <code>name</code> in <strong>ascending order</strong>.</p>\n\n<p>The result format is in the following example.</p>\n\n<p> </p>\n<p><strong class=\"example\">Example 1:</strong></p>\n\n<pre>\n<strong>Input:</strong> \nUsers table:\n+------+-----------+\n| id | name |\n+------+-----------+\n| 1 | Alice |\n| 2 | Bob |\n| 3 | Alex |\n| 4 | Donald |\n| 7 | Lee |\n| 13 | Jonathan |\n| 19 | Elvis |\n+------+-----------+\nRides table:\n+------+----------+----------+\n| id | user_id | distance |\n+------+----------+----------+\n| 1 | 1 | 120 |\n| 2 | 2 | 317 |\n| 3 | 3 | 222 |\n| 4 | 7 | 100 |\n| 5 | 13 | 312 |\n| 6 | 19 | 50 |\n| 7 | 7 | 120 |\n| 8 | 19 | 400 |\n| 9 | 7 | 230 |\n+------+----------+----------+\n<strong>Output:</strong> \n+----------+--------------------+\n| name | travelled_distance |\n+----------+--------------------+\n| Elvis | 450 |\n| Lee | 450 |\n| Bob | 317 |\n| Jonathan | 312 |\n| Alex | 222 |\n| Alice | 120 |\n| Donald | 0 |\n+----------+--------------------+\n<strong>Explanation:</strong> \nElvis and Lee traveled 450 miles, Elvis is the top traveler as his name is alphabetically smaller than Lee.\nBob, Jonathan, Alex, and Alice have only one ride and we just order them by the total distances of the ride.\nDonald did not have any rides, the distance traveled by him is 0.\n</pre>\n",
"metaData":"{\"mysql\":[\"Create Table If Not Exists Users (id int, name varchar(30))\",\"Create Table If Not Exists Rides (id int, user_id int, distance int)\"],\"mssql\":[\"Create Table Users (id int, name varchar(30))\",\"Create Table Rides (id int, user_id int, distance int)\"],\"oraclesql\":[\"Create Table Users (id int, name varchar(30))\",\"Create Table Rides (id int, user_id int, distance int)\"],\"database\":true,\"name\":\"top_travellers\",\"pythondata\":[\"Users = pd.DataFrame([], columns=['id', 'name']).astype({'id':'Int64', 'name':'object'})\",\"Rides = pd.DataFrame([], columns=['id', 'user_id', 'distance']).astype({'id':'Int64', 'user_id':'Int64', 'distance':'Int64'})\"],\"postgresql\":[\"\\nCreate Table If Not Exists Users (id int, name varchar(30))\\n\",\"Create Table If Not Exists Rides (id int, user_id int, distance int)\"],\"database_schema\":{\"Users\":{\"id\":\"INT\",\"name\":\"VARCHAR(30)\"},\"Rides\":{\"id\":\"INT\",\"user_id\":\"INT\",\"distance\":\"INT\"}}}",