CREATE SCHEMA

Creates a new schema..

Syntax

CREATE SCHEMA schema_name

Description

The schema name must be a valid identifier.

The creator of the schema becomes its owner. 

Example

CREATE SCHEMA my_new_schema

See Also

ALTER SCHEMA

DROP SCHEMA

SHOW SCHEMAS

USE