Description:

    Suppose that a website contains two tables, the Customers table and the Orders table. Write a SQL query to find all customers who never order anything

    一种比较高效的方法是左连接,左连接之后任然使用被连接的两个表或多个表来定位连接之后的表的数据。

   

# Write your MySQL query statement below
select Name
from (Customers c left join Orders o on c.Id=o.CustomerId)
where o.Id is null;

 

相关文章:

  • 2021-05-29
  • 2021-07-31
  • 2021-09-02
  • 2022-12-23
  • 2021-12-05
  • 2021-10-29
  • 2021-05-24
猜你喜欢
  • 2022-12-23
  • 2021-11-24
  • 2021-08-11
  • 2021-11-19
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案