What is "mysqlshow"?Mysqlshow is typically used by end users to see information on tables and columns. Here are some sample commands supported by "mysqlshow":
1. "mysqlshow" - Shows all the databases.
2. "mysqlshow databaseName" - Shows all the tables in the specified database.
3. "mysqlshow databaseName tableName" - Shows all the columns in the specified table.
4. "mysqlshow--verbose" - Shows all the databases with extra information.
5. "mysqlshow--verbose my%" - Shows all the databases who's names match the pattern "my%" with extra information.
6. "mysqlshow--verbose mysql time%" - Shows all the tables who's names match the pattern "time%" in "mysql" database with extra information.
|