I've got a pretty straight forward LEFT OUTER JOIN going, grabbing data from the left side table and getting either matching data from the right or null values. That's the plan anyway, and on my dev machine it works great. But on my live site the query only returns values if the right-hand table matches, not when the values would be null. What's the story here?
SELECT * FROM tblA LEFT OUTER JOIN tblB
ON (tblA.ID=tblB.ID AND tblB.fieldA=#)
WHERE tblA.ID=# AND tblA.fieldB=#
ORDER BY tblA.ID,tblA.fieldC
I'm running Windows XP Prof on my dev box, with Office XP/Access. The live box is running WinNT with Access '97. I tried upgrading the version of Access, but still no dice. Anyone have similar issues in the past? Did I simply fail to upgrade Access correctly, or could I be missing a vital dll somewhere? Is this a known problem? Any ideas would be a big help. Thanks!
SELECT * FROM tblA LEFT OUTER JOIN tblB
ON (tblA.ID=tblB.ID AND tblB.fieldA=#)
WHERE tblA.ID=# AND tblA.fieldB=#
ORDER BY tblA.ID,tblA.fieldC
I'm running Windows XP Prof on my dev box, with Office XP/Access. The live box is running WinNT with Access '97. I tried upgrading the version of Access, but still no dice. Anyone have similar issues in the past? Did I simply fail to upgrade Access correctly, or could I be missing a vital dll somewhere? Is this a known problem? Any ideas would be a big help. Thanks!