truncate table 表名;
时间: 2024-03-20 08:35:08 浏览: 188
delete from 表名与truncate table 表名区别
5星 · 资源好评率100%
truncate table 表名; 是一种删除数据库数据的方法,与delete from 表名的区别在于,truncate table 表名会直接删除整张表的数据,而不是逐行删除,因此速度更快,但是无法回滚操作,且不会触发触发器。如果需要删除部分数据或需要回滚操作,应该使用delete from 表名。
以下是一个truncate table 表名的例子:
```sql
truncate table student;
```
阅读全文