SQL - Advanced Joins
Given tables
orders and customers, what will the following query return?SELECT customers.name, orders.id FROM customers LEFT JOIN orders ON customers.id = orders.customer_id WHERE orders.id IS NULL;
