Advanced Search
Search Results
2 total results found
Why doesn't mysqlshow work for databases or tables with underscores in their names?
Programming and Web Development
SQL
mysqlshow has a tricky feature that interprets SQL wildcard characters (*,?,%,_) as wildcards if they appear in the last argument you give it. While the first 3 characters don’t get used much (if at all) in naming databases, the underscore is a common word sep...
What is mysqlshow good for?
Programming and Web Development
SQL
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]]]Th...