MySQL’s display is tabular:

mysql> select id, first_name, last_name from web_user;
+----+------------+-----------+
| id | first_name | last_name |
+----+------------+-----------+
|  1 | Jake       | Worth     |
+----+------------+-----------+
1 row in set (0.00 sec)

I very often prefer vertical results, which I can add with the \G flag at the end.

mysql> select id, first_name, last_name from web_user\G
*************************** 1. row ***************************
        id: 1
first_name: Jake
 last_name: Worth
1 row in set (0.00 sec)

Make sure you leave off the semicolon; \G is a delimiter and the semi is redundant and will error.

See \h for more information.