R
ragtopcaddy via AccessMonster.com
I get the above error msg when running the following union query:
SELECT 0 AS Idxid, "No Index" AS [Index], 0 AS sctrid
UNION SELECT IDXID, Index, sctrid
FROM tblIndices
WHERE IDXID In (SELECT curveid FROM tblCurveDtls)
ORDER BY Index;
The individual queries run fine and return records. As you can plainly see,
there is a table, tblIndices, in the query. Any ideas on what the real
problem is?
Thanks,
Bill R
SELECT 0 AS Idxid, "No Index" AS [Index], 0 AS sctrid
UNION SELECT IDXID, Index, sctrid
FROM tblIndices
WHERE IDXID In (SELECT curveid FROM tblCurveDtls)
ORDER BY Index;
The individual queries run fine and return records. As you can plainly see,
there is a table, tblIndices, in the query. Any ideas on what the real
problem is?
Thanks,
Bill R