Have some visual way of seeing the width of the data in each column.
altsql> select film_id, title from film limit 5;
.---------+------------------.
| film_id | title |
+---------+------------------+
| 1 | ACADEMY DINOSAUR |
| 2 | ACE GOLDFINGER |
| 3 | ADAPTATION HOLES |
| 4 | AFFAIR PREJUDICE |
| 5 | AFRICAN EGG |
'---------+------------------'
In the above example, it's entirely unclear if the 2nd or 5th rows have extra spaces at the end of the title. This rendering would be identical if the title for 5 was AFRICAN EGG<sp><sp> or AFRICAN EGG or AFRICAN EGG<sp>
Have some visual way of seeing the width of the data in each column.
In the above example, it's entirely unclear if the 2nd or 5th rows have extra spaces at the end of the title. This rendering would be identical if the title for 5 was
AFRICAN EGG<sp><sp>
orAFRICAN EGG
orAFRICAN EGG<sp>