Hai guys, I ve thus far used join with two tables but now i want to join three tables which is shown in the below fig
I ve tried to join two tables,
SELECT O.OrderID,O.CustID,O.OrderTotal,C.Name from Orders
as O inner join Customers as C on O.CustID=C.CustID
how to join the third table with this.... Any suggestion...