4
CREATE SCHEMA enters a new schema into the current database. The schema name used must be distinct from the name of any existing schema.
8
CREATE SCHEMA [IF NOT EXISTS] schema_name
14
You can specify the storage engine to use for creating the schema. Please note, there is currently only one engine.
18
engine_option [[,] engine_option] ...
23
There are default settings for character sets and collations at four levels: server, database, table, and column. The COLLATE clause specifies the default database collation.
27
[DEFAULT] COLLATE = collation_name
34
Specify whether or not a SCHEMA should be replicated.
38
REPLICATE=[TRUE|FALSE]