SQL DROP DATABASE 關鍵字
DROP DATABASE
DROP DATABASE
命令用於刪除現有的 SQL 資料庫。
The following SQL drops a database named "testDB" (以下 SQL 語句刪除名為 "testDB" 的資料庫)
示例
DROP DATABASE testDB;
Note: Be careful before dropping a database. Deleting a database will result in loss of complete information stored in the database! (注意:刪除資料庫前請務必小心。刪除資料庫將導致其中儲存的所有資訊丟失!)