FULL OUTER JOIN
SELECT customers.name, customers.city, orders.order_date
FROM customers
FULL OUTER JOIN orders
ON customers.customer_id = orders.customer_id;SELECT customers.name, customers.city, orders.order_date
FROM customers
FULL OUTER JOIN orders
ON customers.customer_id = orders.customer_id
WHERE city = 'London' OR orders.order_date IS NULL;Last updated