資料庫中刪除語句Drop、Delete、Truncate的相同點和不同點的比較(執行個體說明)

來源:互聯網
上載者:User

資料庫刪除語句的分別介紹:
Delete:用於刪除表中的行(註:可以刪除某一行;也可以在不刪除表的情況下(即意味著表的結構、屬性、索引完整)刪除所有行)
文法:刪除某一行:Delete From 表名稱 Where 列名稱=值
刪除所有行: Delete From 表名稱 或 Delete * From 表名稱

Drop:用於刪除表(註:將表的結構、屬性、索引也會被刪除。)
文法:Drop Table 表名稱
Truncate:用於刪除表內的資料(註:僅刪除表內的資料,不刪除表本身,相當於Delete語句不寫Where子句一樣)
文法:Truncate Table 表名稱

資料庫中刪除語句的相同點和不同點的比較:

相同點:

1.truncate和不帶where子句的delete,以及drop都能刪除表內的資料
2.truncate和delete只刪除表資料保留表結構

不同點:

1. truncate table tablename

刪除表內容釋放資料表空間保留表結構(即:只刪除表內的資料,不刪除表本身。相當於Delete語句不寫where子句一樣),不使用交易處理即和事務無關

truncate 語句預設情況下將空間釋放到 minextents個 extent,
除非使用reuse storage;truncate 會將高水線複位(回到最開始)。

2. delete table tablename [where子句]

delete屬於資料操作語言(DML),不能自動認可事務,需commit提交
這個操作會放到 rollback segement 中,事務提交之後才生效;
如果有相應的 trigger,執行的時候將被觸發。
delete 語句不影響表所佔用的 extent,高水線(high watermark)保持原位置不動

3. drop table tablename

drop屬於資料定義語言 (Data Definition Language)(DDL)可以自動認可事務;
drop 語句將刪除表的結構被依賴的約束(constrain)、觸發器(trigger)、索引(index)【刪除表資料同時刪除表結構】;
依賴於該表的預存程序/函數將保留,但是變為 invalid 狀態。
drop 語句將表所佔用的空間全部釋放。
刪除資料的速度,一般來說: drop> truncate > delete

使用場合:

當你不再需要該表時, 用 drop;
當你仍要保留該表,但要刪除所有記錄時, 用 truncate;
當你要刪除部分記錄時(always with a where clause), 用 delete.

注意:
對於有主外鍵關係的表,不能使用truncate而應該使用不帶where子句的delete語句,由於truncate不記錄在日誌中,不能夠啟用觸發器

作者 韓學敏

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.