To create a new database to store tables and schemas and procedures we will be using the CREATE DATABASE statement.
Syntax
CREATE DATABASE DBNAME;
Example
CREATE DATABASE moon;
- So using this we have created a database called the moon.
Tags