If You have CLI access to MYSQL this is the Simplest, and Quickest Method Possible to create a MySQL database.
The whole thing consists of this —-> CREATE DATABASE ‘your_database_name’;
What you actually type out on the command line or “query window”.
CREATE DATABASE blue;
There, the database named blue has been created. The output should like like the image below.
Now You can start adding tables to Your database.