從不訂購的客戶

2021-10-12 18:14:55 字數 958 閱讀 8652

sql架構

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

customers 表:

±—±------+

| id | name |

±—±------+

| 1 | joe |

| 2 | henry |

| 3 | sam |

| 4 | max |

±—±------+

orders 表:

±—±-----------+

| id | customerid |

±—±-----------+

| 1 | 3 |

| 2 | 1 |

±—±-----------+

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

±----------+

| customers |

±----------+

| henry |

| max |

±----------+

答案:select name customers

from customers tt

where tt.id not in (

select a.id

from customers a

right join orders b

on a.id=b.customerid );–對的

select name customers

from customers tt

where tt.name not in (

select a.name

from customers a

right join orders b

on a.id=b.customerid );–錯的

仔細思考一下兩個之前的差異在哪,當天還有其他方式,不僅僅侷限於這一種

從不訂購的客戶

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

從不訂購的客戶

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

從不訂購的客戶

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