Making the Result of a Query Easier to View in Mysql Client.

Learn how view query results easier in mysql client.

To make any query’s results easier to view in the MySQL client, you can add the G parameter. For example:

SHOW TABLE STATUS G

By using this flag the table of results will be displayed vertically instead of horizontally and you don’t have to use a terminating semicolon anymore, because the G ends the command.

Have your say