+ 1
Hello, can anyone help me solve the what did you order practice question in SQL
It involves using the right join command to join two tables
3 Answers
+ 2
What have you tried?
0
SELECT customers.fullname,customers.age, customers.address,orders.amount FROM customers, orders
LEFT JOIN orders.id ON customers.id = orders.id
0
Umm.. if this is right join... why are you using a left join?