RIGHT JOIN
SELECT customers.name, customers.city, orders.order_date
FROM customers
RIGHT JOIN orders
ON customers.customer_id = orders.customer_id;SELECT customers.name, customers.city, orders.order_date
FROM customers
RIGHT JOIN orders
ON customers.customer_id = orders.customer_id
WHERE city = 'London';Last updated