I'm having problems joining three tables. It works well when I use the same query for joining two tables (after removing LEFT OUTER JOIN C ON B.No = C.No). However, it doesn't work when I use three tables.
This is my query
SELECT A.Name, B.Quantity, C.Quantity
FROM A
LEFT OUTER JOIN B
ON A.ID = B.ID
LEFT OUTER JOIN C
ON B.No = C.No;