专题文章
时长:00:00更新时间:2020-11-09 07:09:26
sqlserver通用的删除服务器上的所有相同后缀的临时表: 代码如下: 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.n
查看详情