SQL server 清空数据库所有表
程序员文章站
2022-03-11 09:02:24
...
这个会删除所有的 数据表 假如要保留数据表结构的话 吧 drop 改成 truncate
use 数据库名(是要删除表的所在的那个数据库的名称)
GO
declare @sql varchar(8000)
while (select count(*) from sysobjects where type='U')>0
begin
SELECT @sql='drop table ' + name
FROM sysobjects
WHERE (type = 'U')
ORDER BY 'drop table ' + name
exec(@sql)
end