0
Is this how left outer join works?
SELECT customers.Name, items.Name FROM customers LEFT OUTER JOIN items ON customers.ID=items.Seller_id; 1:outputs the "inner join" + 2:outputs the left table(rest of the field in the left table)
1 Respuesta
0
Yes. ☺👍