mysqlでデータベース(DB)を作成する
「create database」コマンドを使用します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
mysql> mysql> create database kamotoradb; Query OK, 1 row affected (0.01 sec) mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | kamotoradb | | mysql | | p15 | | test | +--------------------+ 5 rows in set (0.00 sec) mysql> |
以下のように「if not exist」をコマンドにつければ、指定する名前のdatabaseが存在しない場合にのみデータベースを作成してくれます。
1 2 3 |
mysql> create database if not exist kamotoradb; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'exist kamotoradb' at line 1 mysql> |