mysql show a database code example
Example 1: how to see database in mysql command line
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.