I want to do this:
List the orders with customer details, but include all customers even if they have not placed an order
I wrote the following
SELECT Customers.CompanyName,Customers.City,Customers.Country,Orders.OrderDate, Orders.RequiredDate
FROM Customers
INNER JOIN Orders
ON Orders.CustomerID = Customers.CustomerID
ORDER BY Customers.CompanyName;
But it returns only those who place the order. I also want to get those who does not place an order.
The database is northwind

left outer joininstead of aninner join. – Gordon Linoff Mar 3 at 21:20LEFT JOIN– FreshPrinceOfSO Mar 3 at 21:21