力扣183 從不訂購的客戶

2021-10-04 21:44:46 字數 1164 閱讀 1188

力扣183. 從不訂購的客戶

某**包含兩個表,customers 表和 orders 表。編寫乙個 sql 查詢,找出所有從不訂購任何東西的客戶。

customers 表:

+----+-------+

| id | name  |

+----+-------+

| 1  | joe   |

| 2  | henry |

| 3  | sam   |

| 4  | max   |

+----+-------+

orders 表:

+----+------------+

| id | customerid |

+----+------------+

| 1  | 3          |

| 2  | 1          |

+----+------------+

例如給定上述**,你的查詢應返回:

+-----------+

| customers |

+-----------+

| henry     |

| max       |

+-----------+

# write your mysql query statement below

#兩表左連線

select customers.name as customers#起別名

from customers left join orders on customers.id=orders.customerid#左連線,條件是兩表的customers.id=orders.customerid

where orders.customerid is null;#查詢知id是null的is null;查詢知id不是null的is not null;

is null 與 is not null

比如從user 表 查詢知name是null的

select *

from user

where name is null

-----------------------------------

name不是null

select * from use where name is not null

力扣資料庫 183 從不訂購的客戶

create table ifnot exists customers id int name varchar 255 create table ifnot exists orders id int customerid int truncate table customers insert int...

LeetCode 183 從不訂購的客戶

題意 某 包含兩個表,customers 表和 orders 表。編寫乙個 sql 查詢,找出所有從不訂購任何東西的客戶。customers 表 id name 1 joe 2 henry 3 sam 4 max orders 表 id customerid 1 3 2 1 例如給定上述 你的查詢應...

從不訂購的客戶

假設乙個 包含兩個表,customers表和orders表。編寫乙個sql語句找出所有從不訂購任何東西的客戶。customers表 id name 1 joe 2 henry 3 sam 4 max orders表 id customerid 1 3 2 1 以上述 為例,返回以下內容 custom...