Go to the first, previous, next, last section, table of contents.


Create database syntax.

CREATE DATABASE database_name

Creates a database with the given name. The name can only contain letters, numbers or the '_' character and must start with a letter or a _. The maximum length of a database name is 64 characters. All databases in MySQL are directories, so a CREATE DATABASE only creates a directory in the MySQL database directory. You can also create databases with mysqladmin. See section Overview of the different MySQL programs


Go to the first, previous, next, last section, table of contents.