返回介绍

solution / 0500-0599 / 0584.Find Customer Referee / README_EN

发布于 2024-06-17 01:03:59 字数 1929 浏览 0 评论 0 收藏 0

584. Find Customer Referee

中文文档

Description

Table: Customer

+-------------+---------+
| Column Name | Type  |
+-------------+---------+
| id      | int   |
| name    | varchar |
| referee_id  | int   |
+-------------+---------+
In SQL, id is the primary key column for this table.
Each row of this table indicates the id of a customer, their name, and the id of the customer who referred them.

 

Find the names of the customer that are not referred by the customer with id = 2.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Customer table:
+----+------+------------+
| id | name | referee_id |
+----+------+------------+
| 1  | Will | null     |
| 2  | Jane | null     |
| 3  | Alex | 2      |
| 4  | Bill | null     |
| 5  | Zack | 1      |
| 6  | Mark | 2      |
+----+------+------------+
Output: 
+------+
| name |
+------+
| Will |
| Jane |
| Bill |
| Zack |
+------+

Solutions

Solution 1: Conditional Filtering

We can directly filter out the customer names whose referee_id is not 2. Note that the customers whose referee_id is NULL should also be filtered out.

# Write your MySQL query statement below
SELECT name
FROM Customer
WHERE IFNULL(referee_id, 0) != 2;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文