當DELETE後面跟條件的時候,則就會出現這個問題
delete from table_name where 條件
刪除數據後,數據表占用的空間大小不會變。
不跟條件直接delete的時候。
delete from table_name
清除了數據,同時數據表的空間也會變為0
如果已經刪除了表數據的很大一部分,或者有很多變化和變長表行(VARCHAR表,VARBINARY、BLOB或文本列)進行了更改,因為刪除操作後在數據文件中留下碎片所致。DELETE只是將數據標識位刪除,並沒有整理數據文件,當插入新數據後,會再次使用這些被置為刪除標識的記錄空間,可以使用OPTIMIZE TABLE來回收未使用的空間,並整理數據文件的碎片。
OPTIMIZE TABLE只對MyISAM, BDB和InnoDB表起作用。
OPTIMIZE TABLE 表名;
針對myisam引擎,使用optimize table 還有如下功能:
If the table has deleted or split rows, repair the table. [修復表] If the index pages are not sorted, sort them. [索引未排序,會排序] If the table's statistics are not up to date (and the repair could not be accomplished by sorting the index), update them.[若表的統計信息不是最新的,更新它]
對myiam數據表進行批量刪除後,發現空間沒有回收,要通過optimize table來回收空間
以上所述是小編給大家介紹的mysql之delete刪除記錄後數據庫大小不變的相關知識,希望對大家有所幫助!