The CREATE DATABASE statement is used to create a new SQL/MySQL database. Syntax CREATE DATABASE databasename; CREATE DATABASE Example The following SQL statement creates a database called "testDB": Example CREATE DATABASE testDB;