SQL LeetCode 183: Customers Who Never Order

Solution:

select name customers from Customers c1 , Orders o1
where c1.id = o1.customerID(+)
and o1.id is null