服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - t-sql清空表数据的两种方式示例(truncate and delete)

t-sql清空表数据的两种方式示例(truncate and delete)

2020-03-12 15:18MSSQL教程网 Sql Server

这篇文章主要介绍了t-sql使用truncate and delete清空表数据的两种方法,大家参考使用

代码如下:


TRUNCATE TABLE (Transact-SQL)

 

Removes all rows from a table without logging the individual row deletions.

TRUNCATE TABLE is similar to the DELETE statement with no WHERE clause;

however, TRUNCATE TABLE is faster and uses fewer system and transaction log resources.

 


两者的区别在于Truncate快,而且释放日志所占资源,不记录由于删除行的影响所产生的日志。

延伸 · 阅读

精彩推荐