MySQL Tutorial
The CREATE DATABASE
statement in MySQL is used to create a new database where tables and other database objects can be stored.
CREATE DATABASE database_name;
database_name
is the name of the new database.Create a database named school_db
: