How To Create Database In MySQL
Creating a new database is easy with MySQL. Today we’re going to show you how this can be done with the CLI.
Connect with the CLI:
mysql -u username -p
Create a new database:
CREATE DATABASE my_good_database1;
Exit from the CLI:
EXIT;