statement is used to create a new SQL database.
You need administrative privileges to create a new database.
database_name
;The following SQL statement creates a database called "testDB":
CREATE DATABASE testDB;Once a database is created, you can check it in the list of databases with the following SQL command:
SELECT name FROM sys.databases;SHOW DATABASES;