SQL CREATE DATABASE Statement
The CREATE DATABASE statement in SQL is used to create a new database. It allows you to specify the name of the database and, in some SQL systems, additional configuration options such as character set, collation, and storage settings.
Syntax
CREATE DATABASE database_name;