When we call the Left/Right Outer Join, what Left/Right means?
From where left/right does it mean?
For example,
What is left table, what is right table?SELECT C.custid, C.companyname, O.orderid
FROM Sales.Customers AS C
LEFT OUTER JOIN Sales.Orders AS O
ON C.custid = O.custid;