MySQL Database

MySQL Create DB

Create a database with MySQL.

CREATE DATABASE shop;

Use IF NOT EXISTS when it is acceptable for the database to already exist: CREATE DATABASE IF NOT EXISTS shop;.