mysql explain result just have DATA_NODE and SQL

50 Views Asked by At

after executing explain in mysql client, the result is:

mysql> explain select * from tbl_demo;
+-----------+------------------------+
| DATA_NODE | SQL                    |
+-----------+------------------------+
| dn1       | select * from tbl_demo |
+-----------+------------------------+
1 row in set (0.00 sec)

can't find id, select_type, table, key, ref, rows and Extra column why?

0

There are 0 best solutions below