次の2つの説明を検討してください。
EXPLAIN SELECT * FROM sales WHERE title != 'The'
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE sales ALL title NULL NULL NULL 41707 Using where
と -
EXPLAIN SELECT * FROM sales WHERE title = 'The'
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE sales ref title title 767 const 1 Using where
!=
クエリにNULL
キーがあるのはなぜですか?なぜ使わないのtitle
ですか?=
ステートメントがインデックスを利用できるが、インデックスを利用できない原因は何!=
ですか?