EXPLAIN SELECT node_id
FROM node
WHERE person_id IN (SELECT person_id
FROM user
WHERE is_locked = 0);
MySql results telling me that this subquery has been received. But this is not so!
(I know this can easily be rewritten as a JOIN, but I want to know why MySQL considers this a dependent subquery.)
source
share