This is the mysql explain plan for one of the queries I'm looking at.
+----+-------------+--------+-------+---------------+---------+---------+------+------+-------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+--------+-------+---------------+---------+---------+------+------+-------+ | 1 | SIMPLE | table2 | index | NULL | PRIMARY | 4 | NULL | 6 | | | 1 | SIMPLE | table3 | ALL | NULL | NULL | NULL | NULL | 23 | | | 1 | SIMPLE | table1 | ALL | NULL | NULL | NULL | NULL | 8 | | | 1 | SIMPLE | table5 | index | NULL | PRIMARY | 4 | NULL | 1 | | +----+-------------+--------+-------+---------------+---------+---------+------+------+-------+
4 lines per set (0 sec)
What is the meaning of the order of expressions in this release? Does this mean that table5 is read before everyone else?
mysql sql-execution-plan
Prafulla
source share