How to interpret the output of MySQL EXPLAIN?
问题 I want to select the content of the column text from entrytable . EXPLAIN SELECT text FROM entrytable WHERE user = 'username' && `status` = '1' && ( `status_spam_user` = 'no_spam' || ( `status_spam_user` = 'neutral' && `status_spam_system` = 'neutral' ) ) ORDER BY datum DESC LIMIT 6430 , 10 The table has three indices: index_user (user) index_datum (datum) index_status_mit_spam (status, status_spam_user, status_spam_system) The EXPLAIN result is: id select_type table type possible_keys key