1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-09-07 08:21:41 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

批量更新数据

This commit is contained in:
2025-01-09 20:29:41 +08:00
parent 04ecea043d
commit 48cdd06c2b
5053 changed files with 156164 additions and 135322 deletions

View File

@@ -12,12 +12,12 @@
"translatedContent": "<p>表:<code>Users</code></p>\n\n<pre>\n+---------------+---------+\n| Column Name | Type |\n+---------------+---------+\n| id | int |\n| name | varchar |\n+---------------+---------+\nid 是该表中具有唯一值的列。\nname 是用户名字。</pre>\n\n<p>&nbsp;</p>\n\n<p>表:<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 是该表中具有唯一值的列。\nuser_id 是本次行程的用户的 id, 而该用户此次行程距离为 distance 。\n</pre>\n\n<p>&nbsp;</p>\n\n<p>编写解决方案,报告每个用户的旅行距离。</p>\n\n<p>返回的结果表单,以&nbsp;<code>travelled_distance</code>&nbsp;<strong>降序排列</strong> ,如果有两个或者更多的用户旅行了相同的距离,&nbsp;那么再以&nbsp;<code>name</code>&nbsp;<strong>升序排列</strong> 。</p>\n\n<p>返回结果格式如下例所示。</p>\n\n<p>&nbsp;</p>\n\n<p><strong>示例 1</strong></p>\n\n<pre>\n<strong>输入:</strong>\nUsers 表:\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+------+-----------+\n\nRides 表:\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>输出:</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>解释:</strong>\nElvis 和 Lee 旅行了 450 英里Elvis 是排名靠前的旅行者,因为他的名字在字母表上的排序比 Lee 更小。\nBob, Jonathan, Alex 和 Alice 只有一次行程,我们只按此次行程的全部距离对他们排序。\nDonald 没有任何行程, 他的旅行距离为 0。\n</pre>\n",
"isPaidOnly": false,
"difficulty": "Easy",
"likes": 69,
"likes": 83,
"dislikes": 0,
"isLiked": null,
"similarQuestions": "[]",
"contributors": [],
"langToValidPlayground": "{\"cpp\": false, \"java\": false, \"python\": false, \"python3\": false, \"mysql\": false, \"mssql\": false, \"oraclesql\": false, \"c\": false, \"csharp\": false, \"javascript\": false, \"typescript\": false, \"bash\": false, \"php\": false, \"swift\": false, \"kotlin\": false, \"dart\": false, \"golang\": false, \"ruby\": false, \"scala\": false, \"html\": false, \"pythonml\": false, \"rust\": false, \"racket\": false, \"erlang\": false, \"elixir\": false, \"pythondata\": false, \"react\": false, \"vanillajs\": false, \"postgresql\": false}",
"langToValidPlayground": "{\"cpp\": false, \"java\": false, \"python\": false, \"python3\": false, \"mysql\": false, \"mssql\": false, \"oraclesql\": false, \"c\": false, \"csharp\": false, \"javascript\": false, \"typescript\": false, \"bash\": false, \"php\": false, \"swift\": false, \"kotlin\": false, \"dart\": false, \"golang\": false, \"ruby\": false, \"scala\": false, \"html\": false, \"pythonml\": false, \"rust\": false, \"racket\": false, \"erlang\": false, \"elixir\": false, \"pythondata\": false, \"react\": false, \"vanillajs\": false, \"postgresql\": false, \"cangjie\": false}",
"topicTags": [
{
"name": "Database",
@@ -59,7 +59,7 @@
"__typename": "CodeSnippetNode"
}
],
"stats": "{\"totalAccepted\": \"41.7K\", \"totalSubmission\": \"74.1K\", \"totalAcceptedRaw\": 41661, \"totalSubmissionRaw\": 74079, \"acRate\": \"56.2%\"}",
"stats": "{\"totalAccepted\": \"53.8K\", \"totalSubmission\": \"95.7K\", \"totalAcceptedRaw\": 53835, \"totalSubmissionRaw\": 95699, \"acRate\": \"56.3%\"}",
"hints": [],
"solution": null,
"status": null,
@@ -90,7 +90,7 @@
"insert into Rides (id, user_id, distance) values ('9', '7', '230')"
],
"enableRunCode": true,
"envInfo": "{\"mysql\":[\"MySQL\",\"<p>\\u7248\\u672c\\uff1a<code>MySQL 8.0<\\/code><\\/p>\"],\"mssql\":[\"MS SQL Server\",\"<p>mssql server 2019.<\\/p>\"],\"oraclesql\":[\"Oracle\",\"<p>Oracle Sql 11.2.<\\/p>\"],\"pythondata\":[\"Pandas\",\"<p>Python 3.10 with Pandas 2.0.2 and NumPy 1.25.0<\\/p>\"],\"postgresql\":[\"PostgreSQL\",\"<p>PostgreSQL 16<\\/p>\"]}",
"envInfo": "{\"mysql\":[\"MySQL\",\"<p>\\u7248\\u672c\\uff1a<code>MySQL 8.0<\\/code><\\/p>\"],\"mssql\":[\"MS SQL Server\",\"<p>mssql server 2019.<\\/p>\"],\"oraclesql\":[\"Oracle\",\"<p>Oracle Sql 11.2.<\\/p>\"],\"pythondata\":[\"Pandas\",\"<p>Python 3.10 with Pandas 2.2.2 and NumPy 1.26.4<\\/p>\"],\"postgresql\":[\"PostgreSQL\",\"<p>PostgreSQL 16<\\/p>\"]}",
"book": null,
"isSubscribed": false,
"isDailyQuestion": false,