What is mysqlshow good for?

mysqlshow is a command-line tool included with standard MySQL distributions, similar to mysqladmin or other tools. mysqlshow is used to show summary information about databases and tables.

Here is its basic usage:
mysqlshow [OPTIONS] [database [table [field]]]

There are four basic modes:

There is also a search mode, which is activated if the last argument contains an SQL wildcard (*,?,%,_). In this mode, all objects at the level of the last argument are searched. For example, mysqlshow ucla c% matches all tables in ucla starting with the letter ‘c’.

Numerous options are available:

Gotchas:

Also see the mysqlshow entry in the MySQL manual.


Revision #3
Created 2006-09-08 12:53:01 UTC by Rozett, Keith
Updated 2011-05-10 22:07:31 UTC by Franks, Mike