CREATE Database
CREATE Database
Section titled “CREATE Database”A database is created with the following SQL command:
CREATE DATABASE myDatabase;This would create an empty database named myDatabase where you can create tables.
Syntax
Section titled “Syntax”- CREATE DATABASE dbname;