There are two ways to delete data in MySQL:
Delete Operation If you need to clear all the data in the table, you can do either of the following: delete from tablename; truncate table tablename; If you only want to delete part of the data, you can only use delete: the difference When deleting some data in a granular manner, only delete can be used. Return Value The return value of truncate is 0, while delete returns the number of deleted records. mysql> truncate serviceHost; Query OK, 0 rows affected (0.04 sec) mysql> delete from serviceHost where creator='test'; Query OK, 4 rows affected (0.01 sec) Auto-increment field If there is an auto-increment field in the table, truncate will reset it to 1, while delete will keep the maximum auto-increment value. Execution efficiency Truncate does not scan the table, which is equivalent to recreating the table, retaining only the table structure, and then deleting the original table, which is very efficient. Operation log Truncate does not write to the server log and cannot be recovered. trigger Truncate does not activate the trigger, but delete does. Summarize The above is the two ways to clear MySQL table data and their differences that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: Detailed explanation of JavaScript closure issues
>>: Steps to deploy Docker project in IDEA
1.Jenkins installation steps: https://www.jb51.ne...
Let me first talk about the implementation steps:...
Preface As a DBA, you will often encounter some M...
Sometimes it is necessary to perform simple verif...
Memo: Just experience it. Record: NO.209 This exa...
Mac latest version of MySQL 8.0.22 password recov...
Recently I used MySQL to export table data to an ...
1. How to represent the current time in MySQL? In...
Linux task management - background running and te...
This article example shares the specific code for...
This article example shares the specific code of ...
Uninstall MariaDB CentOS7 installs MariaDB instea...
MySQL8.0.22 installation and configuration (super...
Data Type: The basic rules that define what data ...
Reflections on the two viewpoints of “people-orie...