MySQL 8.0でデータベースを削除する
環境
Windows10 64bit
MySQL 8.0.27
Windowsコマンドプロンプト
書式
DROP DATABASE データベース名;
使用例
1.「userinfo」という名前のデータベースを作成します
mysql> create database userinfo; Query OK, 1 row affected (0.10 sec)
2.作成したデータベースを確認します
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sakila | | sys | | userinfo | | world | +--------------------+ 7 rows in set (0.00 sec)
3.「userinfo」データベースを削除します
mysql> drop database userinfo; Query OK, 0 rows affected (0.09 sec)
4.再度データベース一覧を確認します
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sakila | | sys | | world | +--------------------+ 6 rows in set (0.07 sec)