This query takes 10 seconds to complete. But when I manually perform the subquery and change the t1.id restriction to that list, it's done in 0.00 seconds. What can I do to let MySQL execute the query quicker?
SELECT t1.col1, t2.col2, t3.col3
FROM t1, t2, t3
WHERE t1.t2id = t2.id AND t1.t3id = t3.id
AND t1.id IN ( SELECT id FROM t4 WHERE blah = 123 )
Also, why is this happening? I suppose MySQL joins all three tables in some way before filtering on t1.id.
t1, t2 and t3 contain 3000, 15 and 80 rows, respectively. The subquery returns 2-10 rows.
explain select ...and using explicit joins likeinner join ...– juergen d Aug 17 '12 at 11:46INNER JOINdoesn't seem to change anything. – Andreas Aug 17 '12 at 11:56explainto see the execution plan of your query. Then you can see where it consumes that much time. – juergen d Aug 17 '12 at 11:57FROM t1, t2, t3is the same as usingINNER JOIN. – Jocelyn Aug 17 '12 at 12:00