Can anybody please help me with the Left outer join.Here I have to get values from three tables using Left Outer join.Please help me to write the below code in LLBL.
SELECT Company.CompanyID, Company.Name, Company.StateID,Company.CountryID, State.Name AS StateName, Country.Name AS CountryName
FROM Company LEFT OUTER JOIN State ON Company.StateID = State.StateID LEFT OUTER JOIN Country ON Company.CountryID = Country.CountryID
Thanxs.