-- we are going to add return reason in orders tables, this will show all colums from orders and all columns from returns -- this will show all data which is matching, and neglect the null value ...
SELECT Customers.Name, Orders.Product FROM Customers INNER JOIN Orders ON Customers.CustomerID = Orders.CustomerID; SELECT Customers.Name, Orders.Product FROM Customers LEFT JOIN Orders ON ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results