这个是别人提供的一个代码,是删除以test开头的表,自己更改下条件就可以了可以试试看
declare @name varchar(20)
while(exists(select from sysobjects where name like 'test%'))
begin
select @name=name from sysobjects where name like 'test%'
exec ('drop table '+@name)
end
以上就是关于SQL批量删除表的命令是全部的内容,包括:SQL批量删除表的命令是、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)