以下のクエリは、指定されたデータベースを作成する
CREATE DATABASE
ステートメントを示します。実行結果には、データベースオプションがすべて含まれています。DEFAULT
CHARACTER SET
と COLLATE
がサポートされています。データベースオプションがすべて保存されている単一のテキストファイルがデータベースディレクトリにあります。
mysql> SHOW CREATE DATABASE a;
+----------+-----------------------------------------------------------+
| Database | Create Database
|
+----------+-----------------------------------------------------------+
| a | CREATE DATABASE `a` /*!40100 DEFAULT CHARACTER SET macce
COLLATE macce_ci_ai */ |
+----------+-----------------------------------------------------------+
1 row in set (0.00 sec)
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.