程序员删库跑路操作

1.查找有哪些库可以删。
mysql> SHOW DATABASES;

  

+--------------------+
| Database           |
+--------------------+
| information_schema |
| java505            |
| mysql              | 
| sakila             |
| sys                |
| testjdbc           |
| test              |
+--------------------+
2.
DROP DATABASE test;
再次SHOW DATABASES; 看下删了没,发现没了
删完了准备跑路吧。!

  

原文地址:https://www.cnblogs.com/wupeng88/p/12966170.html