How to create database in MySQL

MY SQL

MySQL is a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases.MySQL is an open source database software based on the SQL vocabulary which can be employed in combination with most server-side languages, but which is most commonly employed with PHP.
 
Create Database in My SQL

Create database command is use to create database in MY SQL.It is simple command use to create database.
Syntax for create Database:

CREATE Database DATABASE NAME;

Continue here ...