declare @cur varchar(50)
declare curname cursor
for
select name from test.dbo.sysobjects where name like 'web_supply_%' or name like'sj_%'
open curname
fetch next from curname into @cur
while @@fetch_status=0
begin
declare @strSql varchar(500)
set @strSql='drop table '+ @cur
exec( @strSql)
fetch next from curname into @cur
end
close curname
deallocate curname
游历数据库内所有名字符合条件的表
最新推荐文章于 2025-11-28 08:52:23 发布
本文提供了一段SQL脚本,该脚本通过定义游标来查找并删除数据库中符合特定前缀模式的所有表。具体操作包括声明变量和游标、打开游标进行数据检索、执行删除操作,并最终关闭及释放游标资源。
175

被折叠的 条评论
为什么被折叠?



