mysql 清空表数据 tr,MySQL truncate table语句的使用

本文介绍了MySQL中Truncate Table语句的使用,它与Delete语句在删除表数据时的区别。Truncate Table速度快,不记录单行删除操作,而Delete会。文中通过实例展示了Truncate Table的执行过程,并对比了Delete操作,同时提到了在事务中的行为差异。
摘要由CSDN通过智能技术生成

Truncate table语句用来删除/截断表里的所有数据

和delete删除所有表数据在逻辑上含义相同,但性能更快

类似执行了drop table和create table两个语句

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)

到此这篇关于MySQL truncate table语句的使用的文章就介绍到这了,更多相关MySQL truncate table内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

时间: 2021-03-16

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值