Two ways to clear table data in MySQL and their differences

Two ways to clear table data in MySQL and their differences

There are two ways to delete data in MySQL:

  1. Truncate is a rough type of clearing
  2. delete is a refined deletion

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:

delete from tablename where case1 and case2;

the difference

When deleting some data in a granular manner, only delete can be used.
When clearing all table data, both methods are acceptable. There are some differences between the two methods:

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.
Delete will scan the entire table and make judgments based on the where statement, so it is inefficient.

Operation log

Truncate does not write to the server log and cannot be recovered.
delete will write to the server log.

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!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Example and analysis of MySQL clearing data tables
  • Batch modification, clearing, copying and other update commands for MySQL data table field contents
  • asp php clear access mysql mssql database code

<<:  Detailed explanation of JavaScript closure issues

>>:  Steps to deploy Docker project in IDEA

Recommend

How to forget the password of Jenkins in Linux

1.Jenkins installation steps: https://www.jb51.ne...

How to use CSS to display multiple images horizontally in the center

Let me first talk about the implementation steps:...

JavaScript implements password box input verification

Sometimes it is necessary to perform simple verif...

VMware installation of Ubuntu 20.04 operating system tutorial diagram

Memo: Just experience it. Record: NO.209 This exa...

How to retrieve password for mysql 8.0.22 on Mac

Mac latest version of MySQL 8.0.22 password recov...

The difference and usage of datetime and timestamp in MySQL

1. How to represent the current time in MySQL? In...

How to view and terminate running background programs in Linux

Linux task management - background running and te...

How to create a trigger in MySQL

This article example shares the specific code for...

Vue implements drag progress bar

This article example shares the specific code of ...

Alibaba Cloud Centos7.3 installation mysql5.7.18 rpm installation tutorial

Uninstall MariaDB CentOS7 installs MariaDB instea...

MySQL 8.0.22 installation and configuration graphic tutorial

MySQL8.0.22 installation and configuration (super...

MySQL data types full analysis

Data Type: The basic rules that define what data ...

Design theory: people-oriented green design

Reflections on the two viewpoints of “people-orie...