The SQL CREATE DATABASE statement is used to create a new database.
Syntax: CREATE DATABASE databaseName;
Note: Database name should be unique within the RDBMS.
Example:
CREATE DATABASE w3schools_db;
Next Topic: SQL SHOW Database List with example.
Previous Topic: SQL operators.