Menu
×
×
Correct!
Exercise:Insert the missing parts in the JOIN clause to join the two tables
SELECT * FROM orders
LEFT JOIN customers
@(21) = @(21);
SELECT * FROM orders
LEFT JOIN customers
ON orders.customer_id = customers.customer_id;
Not CorrectClick here to try again. Correct!Next ❯ |