清空数据库中所有表格中的数据

清空maste数据库中的所有表数据

use master;
go
sp_msforeachtable @command1="drop table ?"
go

 

清空某一张表中数据

有两种办法可以删除表中的所有数据:

1、TRUNCATE TABLE 删除表中的所有行,而不记录单个行删除操作。

语法 TRUNCATE TABLE name
参数 name 是要截断的表的名称或要删除其全部行的表的名称。

2、Delete from tablename where 1=1

posted on 2018-01-24 14:09  党鹏飞  阅读(261)  评论(0编辑  收藏  举报

导航