This article mainly discusses the differences between three operations of deleting tables in MySQL, the delete statement, the truncate statement, and the drop statement: Introduction delete 1. Delete the data of the entire table: delete from table_name; 2. Delete some data and add a where clause: delete from table_name where...; 3. Description 1) It belongs to DML language. Every time a row is deleted, an entry is recorded in the transaction log for each row deleted. A rollback is generated and takes effect only after the transaction is committed; if there is a corresponding trigger, it will be triggered during execution. If a table with a large amount of data is deleted, the speed will be very slow. truncate 1. You can only operate on the table and delete all the data in the table. Its function is the same as the delete statement without the where clause: truncate table table_name; 2. Description 1) By default, truncate deletes data by releasing the data pages used to store table data, and only records the release of pages in the transaction log. Therefore, less system and transaction log resources are used, and reuse storage can be used; truncate will reset the high watermark (back to the beginning). drop 1. The drop statement will delete the table structure, as well as the dependent constraints, triggers, and indexes; drop table table_name; 2. Note 1) After deletion, the stored procedures/functions that depend on the table will be retained, but will become invalid. the difference 1. Space occupied by tables and indexes: 2. Application scope: 3. Execution speed: 4. After deleting an empty table, delete from will retain an empty page, and truncate will not leave any pages in the table. 5. The process of executing the DELETE statement is to delete one row from the table each time, and at the same time save the deletion operation of the row as a transaction record in the log for rollback operation. TRUNCATE TABLE deletes all data from the table at once without logging individual deletion operations. Deleted rows cannot be recovered. And the delete triggers related to the table will not be activated during the deletion process. Fast execution speed. 6. When a DELETE statement is executed using a row lock, each row in the table will be locked for deletion. truncate always locks tables and pages, not individual rows. 7. If there is an auto-increment id column generated by identity, it will still increase from the last number after delete from, that is, the seed remains unchanged; After deleting using truncate, the seed will be restored to the initial value. Summarize 1. The delete statement can use the where clause to achieve partial deletion, but truncate cannot, which will delete all the data in the table. When using it, you can choose according to your needs; The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of JavaScript to monitor route changes
>>: How to configure tomcat server for eclipse and IDEA
Scrcpy Installation snap install scrcpy adb servi...
Table of contents background CommonsChunkPlugin s...
The default scroll bar style in Windows is ugly, ...
<br />When thoughts were divided into East a...
Writing a Dockerfile Taking the directory automat...
Result:Implementation code: html <link href=...
It is very common to highlight images on a page. ...
Use JavaScript to implement a web page clock. The...
1. float+overflow:hidden This method mainly trigg...
Table of contents 0. What is Webpack 1. Use of We...
Table of contents 1. Pull the mysql image 2. Chec...
This article shares the installation tutorial of ...
Route Jump this.$router.push('/course'); ...
SQL finds all duplicate records in a table 1. The...
Table of contents Preface Stored Procedure: 1. Cr...