MySQL - Drop Table If Exists table_name

摘要:Mysql - Drop Table If Exists table_name

因為要刪除一堆的資料表,但不一定有些資料表是存在的,

在大量批次的刪除資料表中,一個發生錯誤,則就會停止。

所以需要判斷資料表是否存在,

在mysql的drop table指令中,有一個選擇的項目是if exists

指令如下

drop table if exists table_name;

就可以連線批次做刪除資料表的動作。

參考網址:

http://dev.mysql.com/doc/refman/5.5/en/drop-table.html