There are two ways to delete data in a table: delete and truncate. TRUNCATE TABLE is used to delete all rows in a table without recording individual row deletion operations. TRUNCATE TABLE is similar to a DELETE statement without a WHERE clause; however, TRUNCATE TABLE is faster and uses fewer system and transaction log resources. The following describes the usage of Truncate in SQL When you no longer need the table, use drop; when you still want to keep the table but delete all records, use truncate; when you want to delete some records (always with a WHERE clause), use delete. Truncate is a SQL syntax that can quickly clear all data in a table. It can also reset the count to zero and recalculate fields with automatically incremented values. MySQL Truncate usage1. Truncate syntax [ { database_name.[ schema_name ]. | schema_name . } ] parameter database_name schema_name table_name 2. Precautions for using Truncate 1. TRUNCATE TABLE is functionally identical to a DELETE statement without a WHERE clause: both delete all rows in a table. However, TRUNCATE TABLE is faster than DELETE and uses fewer system and transaction log resources. 3. TRUNCATE TABLE cannot be used on the following tables1. Tables referenced by FOREIGN KEY constraints. (You can truncate a table that has a foreign key that references itself.) 2. Tables participating in the index view. 3. Tables published by using transactional replication or merge replication. 4. For tables with one or more of the above characteristics, use the DELETE statement. 5. TRUNCATE TABLE cannot activate triggers because the operation does not record individual row deletions. IV. Differences between TRUNCATE, Drop, and Delete 1. Drop and delete only delete the data (definition) of the table. The drop statement will delete the table structure, dependent constraints, triggers, and indexes; the stored procedures/functions that depend on the table will be retained but become invalid. 3. The delete statement does not affect the extent occupied by the table, and the high watermark remains in its original position. The drop statement releases all the space occupied by the table. By default, the truncate statement releases space to the extent of minextents unless reuse storage is used. Truncate will reset the high water mark (back to the beginning). 4. Efficiency: drop > truncate > delete 5. Security: Use drop and truncate with caution, especially when there is no backup. If you want to delete some data, you can use delete with a where clause and the rollback segment must be large enough. If you want to delete a table, you can use drop. If you want to keep the table but just want to delete all the data in the table, you can use truncate if it is not related to the transaction. If it is related to the transaction or you want to trigger a trigger, still use delete. If you want to sort out the fragments inside the table, you can use truncate followed by reuse stroage, and then re-import and insert the data. 6.delete is a DML statement and will not be automatically submitted. Drop/truncate are both DDL statements and will be automatically committed after execution. 7. Drop is generally used to delete overall data such as tables, schemas, indexes, views, integrity constraints, etc.; delete is used to delete local data such as a tuple in a table. 8. DROP deletes the table structure; DELETE only clears the data 9. When you no longer need the table, use drop; when you still want to keep the table but delete all records, use truncate; when you want to delete some records (always with a WHERE clause), use delete. Difference between TRUNCATE and DELETE in MYSQLIn MYSQL, both TRUNCATE and DELETE can clean up the data in the table, but what is the difference between them? We analyze from the following points: 1. Conditional deletionThis is easier to understand because DELETE can have a WHERE clause, so it supports conditional deletion; whereas TRUNCATE can only delete the entire table. # delete - conditional deletion DELETE FROM student WHERE id = 1; # delete - delete the data of the entire table DELETE FROM student; # truncate - delete the data of the entire table TRUNCATE TABLE student; 2. Transaction rollbackSince DELETE is a data manipulation language (DML), the original data will be placed in the rollback segment during the operation and can be rolled back; while TRUNCATE is a data definition language (DDL), the original data will not be stored during the operation and cannot be rolled back. You can see that DELETE can be rolled back successfully. It can be seen that TRUNCATE cannot be rolled back successfully. 3. Cleaning speedWhen the amount of data is relatively small, the difference in cleanup speed between DELETE and TRUNCATE is not very large. But when the amount of data is large, the difference can be seen. As mentioned in the second item, TRUNCATE does not need to support rollback, so it uses fewer system and transaction log resources. The DELETE statement deletes one row at a time and records an entry in the transaction log for each row deleted. Although it is slow, it is relatively safe. 4. High Water Mark Reset As DML operations on table records are continuously performed, the high water mark (HWM) of the table will continue to increase. Although the data in the table is deleted after the DELETE operation, the high water mark of the table is not lowered. As DML operations occur, the database capacity will only increase, not decrease. Therefore, if DELETE is used, even if the data in the table is reduced a lot, the query speed is still the same as before the DELETE operation. MySQL Truncate usage supplementPreface: When we want to clear a table, we often use the truncate statement. Most of the time we only care about whether the needs can be met, without thinking about the usage scenarios and precautions of such statements. This article mainly introduces the usage and precautions of the truncate statement. 1.Truncate usage syntaxThe function of truncate is to clear the table or truncate the table, and it can only be used on the table. The syntax of truncate is very simple, just follow it with the table name. For example: Executing the truncate statement requires the drop permission for the table. Logically, truncate table is similar to a delete statement that deletes all rows or a combination of a drop table and then a create table statement. To achieve high performance, it bypasses the DML method of deleting data, so it cannot be rolled back. Although truncate table is similar to delete, it is classified as a DDL statement rather than a DML statement. 2. Comparison between truncate, drop, and deleteAs mentioned above, truncate is very similar to delete and drop. In fact, there are still significant differences between these three. The following is a brief comparison of the similarities and differences between the three.
3. Truncate usage scenarios and precautionsThrough the previous introduction, we can easily derive the usage scenario of the truncate statement, that is, truncate can be used when the table data is completely unnecessary. If you want to delete some data, use delete, and remember to include a where clause; if you want to delete a table, of course use drop; if you want to keep the table and delete all data and it has nothing to do with transactions, use truncate; if it is related to transactions, or you want to trigger a trigger, still use delete; if you want to sort out the fragments inside the table, you can use truncate and then reinsert the data. In any case, truncate table is a high-risk operation, especially in production environment, you need to be more careful. Here are a few points to note, I hope you can use them as a reference when using.
The above is the detailed content of the detailed usage of MySQL Truncate. For more information about MySQL Truncate, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
>>: React+axios implements github search user function (sample code)
html <div class="totop" v-show="...
Table of contents Common version introduction Com...
Table of contents 1. What is nginx? 2. What can n...
Table of contents 1. v-for: traverse array conten...
1. Modify the firewall settings and open the corr...
Preface For tree-structured data in the database,...
Rancher deployment can have three architectures: ...
0. Preparation: • Close iTunes • Kill the service...
Table of contents 1. Security issues with Docker ...
Recorded MySQL 5.7.9 installation tutorial, share...
Most people have heard of the concept of server-s...
1. Understanding of transition attributes 1. The ...
Table of contents Million-level data processing s...
Today, I logged into the server and prepared to m...
Download and install. First check whether there i...