Use the CREATE DATABASE
command to create a new database.
Parameter or clause | Description |
---|---|
database_name | The name of the database to be created. |
IF NOT EXISTS clause | Creates a database if the database name has not already been used. Otherwise throws an error. |
OWNER [=] user_name clause | Specifies which user owns the database to be created. |