Hi,
ich habe auf eine Query, die mir etwas lange dauert, einen EXPLAIN angewendet und erhalte folgendes Ergebnis (ich teile die Tabelle mal in 2 Teile, damit es lesbar bleibt):
id select_type table type possible_keys
1 PRIMARY b1 ALL tableID
2 DEPENDENT SUBQUERY b2 ALL NULL
key key_len ref rows Extra
NULL NULL NULL 46833 Using where
NULL NULL NULL 46833 Using where
Frage: Warum wird der "possible key" tableID nicht genutzt? Die Spalte "tableID" hat einen Index.
Lukas