1. 程式人生 > >mysql5.7基礎 drop database if exists... 刪除數據庫前判斷它是否存在

mysql5.7基礎 drop database if exists... 刪除數據庫前判斷它是否存在

思考 warning nbsp for databases set affect ase 管理系統

禮悟:
   公恒學思合行悟,尊師重道存感恩。葉見尋根三返一,江河湖海同一體。
虛懷若谷良心主,願行無悔給最苦。讀書鍛煉養身心,誠勸且行且珍惜。


  數據、數據,命根就在數據。操作數據庫一定要謹慎小心。給最苦 這裏的代碼,看看就好,要有自己的判斷。遇到抉擇,要不恥上下問。
mysql:5.7
os:Windows7 x64

代碼及效果

mysql> show databases;
+--------------------+
| Database           |
+--
------------------+ | information_schema | | @@@@ | | database | | mysql | | newbases | | performance_schema | | test | +--------------------+ 7 rows in set (0.00 sec) mysql> drop database if exists aaa; Query OK, 0 rows affected, 1 warning (0.00
sec)

mysql> drop database if exists `@@@@`;
Query OK, 0 rows affected (0.01 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| database           |
| mysql              |
| newbases           |
| performance_schema |
| test               |
+--------------------+ 6 rows in set (0.00 sec) mysql>


mysql,關系型數據庫管理系統,優秀,值得學習。
學習資源:itcast和itheima視頻庫 + 清凈的心地。
如果您有公開的資源,可以分享給我的話,用您的資源學習也可以。
博文是觀看視頻後,融入思考寫成的。博文好,是老師講得好。博文壞,是 給最苦 沒認真。

mysql5.7基礎 drop database if exists... 刪除數據庫前判斷它是否存在