The database is a collection of tables and it has a unique name.
Syntax:-
CREATE DATABASE databaseName
Example:-
If you want to create database employee_management then use below command
CREATE DATABASES employee_management
Now, you can check the created database through below command
SHOW DATABASES
Output:-
employee_management
schools_management