SQL Create Database Statement
SQL Create Database Statement
The CREATE DATABASE Statement is used to create a database. After creating a database, we can create several other database objects (tables, views, procedures etc.) into it. The user should have admin privileges for creating database.:
[COLLATE collation_name ]
In the above query, - database_name - is the name of the database to be created - collation_name - is the default collation (character set) for the database. This, collation_name, is an optional field and if not provided then Default Collation is assigned to database.