DROP TABLE / TRUNCATE TABLE / DROP DATABASE Statement

我們可以用 DROP TABLE / TRUNCATE TABLE / DROP DATABASE 來刪除資料表或資料庫。

刪除資料表 (DROP TABLE)

完全刪除整個資料表。

DROP TABLE table_name;

僅刪除資料表內容,但保留結構 (TRUNCATE TABLE)

TRUNCATE TABLE table_name;

資料表還在,只是資料清空了。

刪除資料庫 (DROP DATABASE)

DROP DATABASE database_name;