mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-12 02:41:42 +08:00
存量题库数据更新
This commit is contained in:
@@ -1,23 +1,40 @@
|
||||
<p>给定表 <code>customer</code> ,里面保存了所有客户信息和他们的推荐人。</p>
|
||||
<p>表: <code>Customer</code></p>
|
||||
|
||||
<pre>
|
||||
+------+------+-----------+
|
||||
| id | name | referee_id|
|
||||
+------+------+-----------+
|
||||
| 1 | Will | NULL |
|
||||
| 2 | Jane | NULL |
|
||||
| 3 | Alex | 2 |
|
||||
| 4 | Bill | NULL |
|
||||
| 5 | Zack | 1 |
|
||||
| 6 | Mark | 2 |
|
||||
+------+------+-----------+
|
||||
</pre>
|
||||
+-------------+---------+
|
||||
| Column Name | Type |
|
||||
+-------------+---------+
|
||||
| id | int |
|
||||
| name | varchar |
|
||||
| referee_id | int |
|
||||
+-------------+---------+
|
||||
在 SQL 中,id 是该表的主键列。
|
||||
该表的每一行表示一个客户的 id、姓名以及推荐他们的客户的 id。</pre>
|
||||
|
||||
<p>写一个查询语句,返回一个客户列表,列表中客户的推荐人的编号都 <strong>不是 </strong>2。</p>
|
||||
<p>找出那些 <strong>没有被</strong> <code>id = 2</code> 的客户 <strong>推荐</strong> 的客户的姓名。</p>
|
||||
|
||||
<p>对于上面的示例数据,结果为:</p>
|
||||
<p>以 <strong>任意顺序</strong> 返回结果表。</p>
|
||||
|
||||
<p>结果格式如下所示。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<b>输入:</b>
|
||||
Customer 表:
|
||||
+----+------+------------+
|
||||
| id | name | referee_id |
|
||||
+----+------+------------+
|
||||
| 1 | Will | null |
|
||||
| 2 | Jane | null |
|
||||
| 3 | Alex | 2 |
|
||||
| 4 | Bill | null |
|
||||
| 5 | Zack | 1 |
|
||||
| 6 | Mark | 2 |
|
||||
+----+------+------------+
|
||||
<b>输出:</b>
|
||||
+------+
|
||||
| name |
|
||||
+------+
|
||||
@@ -25,5 +42,4 @@
|
||||
| Jane |
|
||||
| Bill |
|
||||
| Zack |
|
||||
+------+
|
||||
</pre>
|
||||
+------+</pre>
|
||||
|
Reference in New Issue
Block a user