mysql show db code example
Example 1: mysql command line see all databases
SHOW DATABASES;
Example 2: mysql show create db
SHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name
If the SHOW statement includes an IF NOT EXISTS clause, the output
too includes such a clause. SHOW CREATE SCHEMA is a synonym for
SHOW CREATE DATABASE.