Create Database

CREATE Database

Using the mysql command line or mysqlsh...

create database mydatabase;

You can achieve the same thing through mysqladmin...

mysqladmin create mydatabase -u root --password=root

Bibliography