mysql show create db

Solutions on MaxInterview for mysql show create db by the best coders in the world

showing results for - "mysql show create db"
Simone
27 Sep 2019
1SHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name
2
3If the SHOW statement includes an IF NOT EXISTS clause, the output 
4too includes such a clause. SHOW CREATE SCHEMA is a synonym for
5SHOW CREATE DATABASE.
6