Compared to SQL*Plus (Oracle's cmdline client) which can as I
understand produce complete paginated reports, the 'mysql' tool
has fairly simple output formatting. I'm not generally fussed
about that, as there are perfectly good other tools do make
snazzy reports with. Some very cross platform (like web based),
output PDF, not a problem. You can even write your own quickly
these days.
But the cmdline tool has its use. I always teach my students the
basics of it, and insist that some exercises are done using this
tool. Familiarity (which involves some practice) helps there.
Why? If all else fails, you generally do have mysql available on
a machine. It's not hindered by remote ssh logins, or anything
else. And, of course, for quickly checking something. And that's
where the proficiency helps again. So, normally, you get this
type of ASCII table:
mysql> select "Hello, world!" AS foo; --------------- | foo | …[Read more]