This is an old revision of the document!
Create Database
Syntax
CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name [create_specification [create_specification] ...] create_specification: [DEFAULT] CHARACTER SET charset_name | [DEFAULT] COLLATE collation_name
Example
CREATE DATABASE IF NOT EXISTS databasename;