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

存量题库数据更新

This commit is contained in:
2023-12-09 18:42:21 +08:00
parent a788808cd7
commit c198538f10
10843 changed files with 288489 additions and 248355 deletions

View File

@@ -9,9 +9,9 @@
| salary | int |
| departmentId | int |
+--------------+---------+
id是此表的主键
departmentIdDepartment表中ID的外键
此表的每一行都表示员工的ID、姓名和工资。它还包含他们所在部门的ID
在 SQL 中,id是此表的主键。
departmentIdDepartment 表中 id 的外键(在 Pandas 中称为 join key
此表的每一行都表示员工的 id、姓名和工资。它还包含他们所在部门的 id
</pre>
<p>&nbsp;</p>
@@ -25,13 +25,13 @@ departmentId是Department表中ID的外键。
| id | int |
| name | varchar |
+-------------+---------+
id是此表的主键列。
此表的每一行都表示一个部门的ID及其名称。
在 SQL 中,id 是此表的主键列。
此表的每一行都表示一个部门的 id 及其名称。
</pre>
<p>&nbsp;</p>
<p>编写SQL查询以查找每个部门中薪资最高的员工。<br />
<p>查找每个部门中薪资最高的员工。<br />
<strong>任意顺序</strong> 返回结果表。<br />
查询结果格式如下例所示。</p>