Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Create Database ====== ===== Syntax ===== <code mysql> CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name [create_specification [create_specification] ...] create_specification: [DEFAULT] CHARACTER SET charset_name | [DEFAULT] COLLATE collation_name </code> ===== Example ===== <code mysql> CREATE DATABASE IF NOT EXISTS databasename; </code> docs/mysql/create_database.txt Last modified: 2008/08/03 00:25by 127.0.0.1