0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【MySQL】データベースの削除方法【DROP DATABASE】

Last updated at Posted at 2022-04-07

本稿ではMySQLでデータベースを削除する方法を紹介します。

【参考】公式ドキュメント

MySQL 8.0 リファレンスマニュアル(DROP DATABASE ステートメント)

データベースの削除

書式は以下の通りです。

DROP DATABASE db_name

実際にデータベースを削除してみます。

削除するデータベースの確認

testdbが存在することを確認します。

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| testdb             |
+--------------------+
5 rows in set (0.00 sec)

データベースの削除

testdbを削除します。

mysql> DROP DATABASE testdb;
Query OK, 4 rows affected (0.03 sec)

削除されたことを確認

testdbが削除されたことを確認します。

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

mysql>

MySQLでデータベースを削除する方法を紹介しました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?