select fldUserName,fldCatName
from tblUser u, tblCat c, tblUserCat uc
where u.fldUserId = uc.fldUserId
and uc.active = 'Yes'
and uc.fldCatId = c.fldCatId
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] The specified field 'fldUserId' could refer to more than one table listed in the FROM clause of your SQL statement.
select fldCompany, fldUserId
from tblUser u, tblCat c, tblUserCat uc
where u.fldUserId = uc.fldUserId
and uc.fldActive = 'on'
and uc.fldCatId = c.fldCatId;
select tblUser.fldCompany, tblUser.fldUserId from tblUser u, tblCat c, tblUserCat uc where u.fldUserId = uc.fldUserId and uc.fldActive = 'on' and uc.fldCatId = c.fldCatId;
Microsoft OLE DB Provider for ODBC Drivers error '80040e10'
[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 2.
select u.fldCompany, u.fldUserId
from tblUser u, tblCat c, tblUserCat uc
where u.fldUserId = uc.fldUserId
and uc.fldActive = on
and uc.fldCatId = c.fldCatId;
256 ms totalt · 4 externa anrop · v20260731065814-full.1dc6f849