Preface: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 syntax The 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 a detailed explanation of the usage of Truncate in MySQL introduced by the editor. I hope it will be helpful to everyone. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Detailed explanation of Web front-end performance optimization: resource merging and compression
>>: Solution to the conflict between two tabs navigation in HTML
Table of contents 1. System Information 2. Shutdo...
Generally, during the development process, the su...
I usually use nginx as a reverse proxy for tomcat...
mysql create table sql statement Common SQL state...
MySQL error: Error code: 1293 Incorrect table def...
Table of contents 1. Pull the Redis image 2. Crea...
background When I was using Docker these two days...
I have seen many relevant tutorials on the Intern...
Preface When my team was developing the tax syste...
Hyperf official website Hyperf official documenta...
In a web page, the <input type="file"...
This article uses an example to describe the inte...
Table of contents Preface Motivation for Fragment...
First put a piece of code for(int i=0;i<1000;i...
Table of contents 1. Two-way binding 2. Will the ...