183-customers-who-never-order
DevGod
Elf Vtuber
# Write your MySQL query statement belowSELECT name AS Customers from CustomersLEFT JOIN Orders ON Customers.id = Orders.customerIdWHERE customerId IS NULL# Write your MySQL query statement belowSELECT name AS Customers from CustomersLEFT JOIN Orders ON Customers.id = Orders.customerIdWHERE customerId IS NULL