Use of MySQL truncate table statement

Use of MySQL truncate table statement

The Truncate table statement is used to delete/truncate all data in the table.

  • This is the same as delete, which means deleting all table data, but has faster performance.
  • Similar to executing the drop table and create table statements

Executing Code

mysql> select * from students_bak;
+-----+----------+--------+---------+
| sid | sname | gender | dept_id |
+-----+----------+--------+---------+
| 101 | zhangsan | male | 10 |
| 1 | aa | 1 | 1 |
+-----+----------+--------+---------+
2 rows in set (0.00 sec)

mysql> truncate table students_bak;
Query OK, 0 rows affected (0.16 sec)

mysql> select * from students_bak;
Empty set (0.00 sec)

mysql> set autocommit=off;
Query OK, 0 rows affected (0.01 sec)

mysql> select * from students3;
+-----+-------+--------+---------+--------+
| sid | sname | gender | dept_id | sname2 |
+-----+-------+--------+---------+--------+
| 100 | NULL | 1 | 1 | NULL |
+-----+-------+--------+---------+--------+
1 row in set (0.01 sec)

mysql> truncate table students3;
Query OK, 0 rows affected (0.06 sec)

mysql> rollback;
Query OK, 0 rows affected (0.00 sec)

mysql> select * from students3;
Empty set (0.00 sec)

mysql> delete from students;
Query OK, 5 rows affected (0.00 sec)

mysql> select * from students;
Empty set (0.00 sec)

mysql> rollback;
Query OK, 0 rows affected (0.07 sec)

mysql> select * from students;
+-----+-------+--------+---------+
| sid | sname | gender | dept_id |
+-----+-------+--------+---------+
| 1 | aa | 3 | 1 |
| 4 | cc | 3 | 1 |
| 5 | dd | 1 | 2 |
| 6 | aac | 1 | 1 |
| 10 | a | 1 | 1 |
+-----+-------+--------+---------+
5 rows in set (0.00 sec)

What permissions does truncate need?

The execution of truncate is drop first and then create, so truncate includes drop and create, which is a compound action. You don't need to grant create permission, so you only need to grant drop permission.

This is the end of this article about the use of MySQL truncate table statement. For more relevant MySQL truncate table content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Truncate usage in MYSQL
  • MySQL uses the truncate command to quickly clear all tables in a database
  • Detailed explanation of MySQL Truncate usage
  • Data recovery case after truncate error operation in MySQL
  • mysql delete operation (delete+TRUNCATE)
  • Comparison of MySQL Delete and Truncate statements

<<:  DELL R730 server configuration RAID and installation server system and domain control detailed graphic tutorial

>>:  Detailed explanation of eight methods to achieve CSS page bottom fixed

Recommend

Essential Handbook for Web Design 216 Web Safe Colors

The color presentation on a web page will be affec...

HTML Web Page List Tags Learning Tutorial

HTML web page list tag learning tutorial. In HTML ...

Navicat for MySql Visual Import CSV File

This article shares the specific code of Navicat ...

The principle and implementation of js drag effect

The drag function is mainly used to allow users t...

A brief discussion on the VUE uni-app life cycle

Table of contents 1. Application Lifecycle 2. Pag...

HTML form and the use of form internal tags

Copy code The code is as follows: <html> &l...

How many ports can a Linux server open at most?

Table of contents Port-related concepts: Relation...

HTML Tutorial: Collection of commonly used HTML tags (6)

These introduced HTML tags do not necessarily ful...

React native ScrollView pull down refresh effect

This article shares the specific code of the pull...

Discuss the value of Web standards from four aspects with a mind map

I have roughly listed some values ​​to stimulate ...

MySQL 8.0.15 download and installation detailed tutorial is a must for novices!

This article records the specific steps for downl...

Detailed example of MySQL joint table update data

1.MySQL UPDATE JOIN syntax In MySQL, you can use ...

How to use Font Awesome 5 in Vue development projects

Table of contents Install Dependencies Configurat...

Detailed explanation of three solutions to the website footer sinking effect

Background Many website designs generally consist...