本文共 316 字,大约阅读时间需要 1 分钟。
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
本文转自程序猿博客51CTO博客,原文链接http://blog.51cto.com/haihuiwei/1605903如需转载请自行联系原作者
365850153