1. 首页
  2. 数据库
  3. 其它
  4. sqlserver通用的删除服务器上的所有相同后缀的临时表

sqlserver通用的删除服务器上的所有相同后缀的临时表

上传者: 2020-12-23 01:45:49上传 PDF文件 29.88KB 热度 9次
代码如下: use tempdb if object_id(‘tempdb..#table’) is not null drop table tempdb..#table select name into tempdb..#table from (select * from sysobjects where xtype=’U’) a where a.name like ‘%test_select’ declare @table varchar(100),@count int select @count=count(name) from tempdb..#table while(@count>0
下载地址
用户评论