MySQLをインストールしたらまず最初に作るのがデータベースだと思います。
今回はMySQL上にデータベースを作成する手順を紹介します。
データベース作成手順
まずはMySQLへrootユーザで接続します。
[root@cent77 ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.29 MySQL Community Server (GPL)
Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
以下のSQLでデータベースを作成します。
CREATE DATABASE <データベース名> DEFAULT CHARACTER SET <キャラクタセット>;
今回は以下の指定でデータベースを作成します。
- データベース名: dekirudb
- キャラクタセット: utf8mb4
mysql> CREATE DATABASE dekirudb DEFAULT CHARACTER SET utf8mb4;
Query OK, 1 row affected (0.00 sec)
「show databases;」コマンドで作成されたデータベースを確認します。
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| dekirudb |
| mysql |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.01 sec)
「dekirudb」という名前のデータベースが作成されていることが確認できます。
その他のデータベースはMySQLインストール時に作成される内部のデータベースとディクショナリとなります。
データベース削除手順
以下のSQLでデータベースを削除することが可能です。
DROP DATABASE <データベース名>;
mysql> DROP DATABASE dekirudb;
Query OK, 0 rows affected (0.01 sec)
削除されたデータベースを確認します。
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| sys |
+--------------------+
5 rows in set (0.01 sec)
drop database はデータベース内のデータを全て削除する危険なSQLですので、データベース削除は慎重に作業しましょう。
データベースを作った後のユーザー作成作業については以下を参照ください。