183. Customers Who Never Order 發表於 2023-02-13 | 分類於 leetcode problemsolutionsub-query 12345678# Write your MySQL query statement belowselect name as Customersfrom Customers as awhere a.id not in( select customerId from Orders);