set rowcount 0
    
set @name = 'drop table ' + ltrim(rtrim(@name))
    
exec(@name)
    
    
set rowcount 1
    
select @name = name from sysobjects where xtype = 'U' order by newid()
end
go

相关文章:

  • 2022-02-13
  • 2022-02-21
  • 2021-10-01
  • 2021-06-25
  • 2022-12-23
  • 2022-02-01
  • 2021-12-02
  • 2021-09-10
猜你喜欢
  • 2022-12-23
  • 2021-07-29
  • 2021-08-09
  • 2022-12-23
  • 2022-02-27
  • 2022-12-23
  • 2021-12-14
相关资源
相似解决方案