I would think the following two queries should be processed the same, but the first one takes over a second, while the second takes a few milliseconds.
SELECT * FROM tblData WHERE idA IN (SELECT idB FROM tblIndex WHERE idC=1234);
SELECT * FROM tblData WHERE idA = (SELECT idB FROM tblIndex...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.