SQL Server t-sql清空表数据的两种方式示例(truncate and delete)
2022-11-12 09:42:06
内容摘要
这篇文章主要为大家详细介绍了SQL Server t-sql清空表数据的两种方式示例(truncate and delete),具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技
文章正文
这篇文章主要为大家详细介绍了SQL Server t-sql清空表数据的两种方式示例(truncate and delete),具有一定的参考价值,可以用来参考一下。
对此感兴趣的朋友,看看idc笔记做的技术笔记!
代码如下:
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.
注:关于SQL Server t-sql清空表数据的两种方式示例(truncate and delete)的内容就先介绍到这里,更多相关文章的可以留意
代码注释