|
changed sections in blue
SELECT tblSuppliers.*, tblCountry.Country, tblLocation.location FROM tblSuppliers AS S INNER JOIN tblLocation AS L ON (S.idLocation = L.idLocation) INNER JOIN tblCountry AS C ON (L.idCountry = c.idCountry) WHERE UserName = '" & MMColParam & "' :"
{not tested}
the AS isn't strict in MS Access but other SQL servers can be, so if you port the application it could cause an error then.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
|