Everyone who works with MySQL (or MariaDB) query optimizer has to spend a lot of time looking at EXPLAIN outputs. You typically first look at the tabular form, because it is easier to read. You can immediately see what the join order is, what numbers of records will be read, etc:
MariaDB [dbt3sf1]> explain select * from customer, orders where c_custkey= o_custkey; +------+-------------+----------+------+---------------+-------------+---------+----------------------------+--------+-------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +------+-------------+----------+------+---------------+-------------+---------+----------------------------+--------+-------+ | 1 | SIMPLE | customer | ALL | PRIMARY | NULL | NULL | NULL | 150303 | | | 1 | SIMPLE | orders | ref | i_o_custkey | i_o_custkey | 5 | …[Read more]