MySQL Create Database

The MySQL Create Database Tool allows users to visually create databases for MySQL.

Options on the tool include the following:

Database Name (the name of the database to be created)
Character Set (the character set for the database)
Collation (the collation for the database)

Listed below is an example create database SQL statement generated by the Create Database tool for MySQL

CREATE DATABASE testdatabase
CHARACTER SET 'utf8'
COLLATE 'utf8_general_ci'

MySQL Create Database