SQL CREATE DATABASE statement

Usually DBMSs include an administration tool that can be used to create, manage database and tables. Database can also be created with the SQL CREATE DATABASE statement. The syntax:

CREATE DATABASE databasename;

Here is an example. The following SQL statement will create a database called Mydatabase:

CREATE DATABASE Mydatabase;

Geek University 2022