I'm ready to chalk this up to the catch-all "Access is weird" I end up deferring to pretty frequently. I'm troubleshooting an issue with some legacy software (using .accdb format Access file) with the following query:
SELECT *
FROM [TestCopy] N
WHERE (C_LNAME = (SELECT LNAME FROM [TestCopy] X WHERE ID=N.ID-2)
OR LNAME = (SELECT C_LNAME FROM [TestCopy] X WHERE ID=N.ID+2))
This query causes Access to hang (I'm running it directly in the SQL Query within Access.) I've let it sit for an hour or so before and it doesn't finish running. However, if I use a UNION to the exact same query, it runs in a few seconds:
(
SELECT *
FROM [TestCopy] N
WHERE (C_LNAME = (SELECT LNAME FROM [TestCopy] X WHERE ID=N.ID-2)
OR LNAME = (SELECT C_LNAME FROM [TestCopy] X WHERE ID=N.ID+2))
)
UNION
(
SELECT *
FROM [TestCopy] N
WHERE (C_LNAME = (SELECT LNAME FROM [TestCopy] X WHERE ID=N.ID-2)
OR LNAME = (SELECT C_LNAME FROM [TestCopy] X WHERE ID=N.ID+2))
)
LNAME and C_LNAME are text fields. ID is an AutoNumber/int field. I have tried running with joins comparable to the WHERE clauses, but those won't run at all with or without the union.
What might explain this behavior?
=N.ID+2) makes me think something weird is going on here beyond "Access is weird". – Tim Mar 6 at 15:59