CREATE DATABASE
CREATE DATABASE [IF NOT EXISTS] db_name
This action simply creates a new database with the given name (db_name).
This query will fail if the database already exists (unless IF NOT
EXISTS is specified), or if you don't have the required privileges.