老师这是什么原因
mysql> DROP DATABASE test5;
ERROR 1008 (HY000): Can't drop database 'test5'; database doesn't exist
mysql> DROP DATABASE IF EXISTS test5;
Query OK, 0 rows affected, 1 warning (0.01 sec)
mysql> SHOW WARNINGS;
Empty set (0.00 sec)
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| database |
| information_schema |
| mysql |
| performance_schema |
| sakila |
| sys |
| test1 |
| test2 |
| test3 |
| test4 |
| text5 |
+--------------------+
11 rows in set (0.00 sec)
正在回答
同学你好,test5数据库不存在导致的错误,同学可删除text5数据库。如下图所示:
如果我的回答解决了你的疑惑,请采纳,祝学习愉快~
- 参与学习 人
- 提交作业 357 份
- 解答问题 8016 个
本阶段将带你学习MySQL数据库,JDBC接口,MyBatis框架等,带你掌握的数据的存放和管理。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星