删除数据库中的空表

时间:2021-06-05 22:20:12
我有一个SQL SERVER 数据库,其中有好几百个表,很多表是空表,我想删除所有的空表可是工作量很大,能不能用程序解决,希望大哥大姐不吝赐教,小弟不胜感激。

38 个解决方案

#1


看過鄒老大一篇查詢記錄數大於一定值的表的貼子,但是忘了收藏....

#2


關注

#3


小弟有个建议,
1,先用  select name from sysobjects  where xtype = 'u' 定义个游标。
2,在游标中取出每个表名,然后,select count(*) from table_name
3, 看看哪个表的记录为0,就drop table 
4,因为时间关系我没有试,
你试试看!

#4


小弟有个建议,
1,先用  select name from sysobjects  where xtype = 'u' 定义个游标。
2,在游标中取出每个表名,然后,select count(*) from table_name
3, 看看哪个表的记录为0,就drop table 
4,因为时间关系我没有试,
你试试看!

#5


小弟有个建议,
1,先用  select name from sysobjects  where xtype = 'u' 定义个游标。
2,在游标中取出每个表名,然后,select count(*) from table_name
3, 看看哪个表的记录为0,就drop table 
4,因为时间关系我没有试,
你试试看!

#6


declare @tbname varchar(100)
declare cur_tmp cursor for
select object_name(id) from sysindexes where indid in (0,1) and rows=0
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status=0
begin
exec('drop table '+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

#7


exec sp_msforeachtable "if not exists(select 1 from ?) drop table ?"

#8


没公开的东东,就是好啊 sp_msforeachtable

#9


顶 "树上的鸟儿",太强悍了。

#10


看来有时间得研究下数据库里的存储过程了.
select name from master.dbo.sysobjects where objectproperty(id,'IsProcedure')=1
获得存储过程名
然后用exec master.dbo.sp_helptext name
来查看具体内容,希望和我一样刚入门的少走弯路.

#11


关注一下

#12


exec sp_msforeachtable "if not exists(select 1 from ?) drop table ?"
非常经典

#13


存储过程用得好,厉害

#14


精通了 ,-_-!

#15


拜谢大哥大姐们。

#16


大强了,chuifengde(树上的鸟儿) 大强了,如何才能走上这种道路啊

#17


看来有时间得研究下数据库里的存储过程了.
select name from master.dbo.sysobjects where objectproperty(id,'IsProcedure')=1
获得存储过程名
然后用exec master.dbo.sp_helptext name
来查看具体内容,希望和我一样刚入门的少走弯路.


一个个看??有没有手册学下啊

#18


這些存儲過程大部分都是MS沒有公佈的,上哪去找手冊

#19


declare @name varchar(50)

declare cursor roy for
select a.name from sysobjects a,sysindexes b 
where a.xtype='u' and a.name !='sysdiagrams' and a.id=b.id and b.indid in (0,1) and b.rows=0

open roy
fetch next from roy into @name
while (@@fetch_status=0)
begin
exec('delete from '+@name)
fetch next from roy into @name
end
close roy
deallocate roy

#20


樓上

delete from 是刪除表的嗎?呵呵

-_-#

#21


mark~~

#22


补充一点,我是想删除所有用户表中的空表,我参考“与君共勉”的写了一个,可是调试不过去,大家帮我看一下吧。
declare @tbname varchar(100)
declare cur_tmp cursor for
select object_name(id) from sysobjects where xtype='u'
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status<>0
begin
if (select count(*) from @tbname)=0
then
exec('drop table'+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

#23


学习了

这个系统的存储过程,有时间的话多了解些挺有用

不过也是个耗时间的工程啊

#24


补充一点,我是想删除所有用户表中的空表,我参考“与君共勉”的写了一个,可是调试不过去,大家帮我看一下吧。
-----------------------------------------------------------
这是改过的
declare @tbname varchar(100)
declare cur_tmp cursor for
select name from sysobjects where xtype='u'
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status=0
begin
exec('if not exists(select 1 from '+@tbname+') drop table '+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

----------------------------------------------------------
declare @tbname varchar(100)
declare cur_tmp cursor for
select object_name(id) from sysobjects where xtype='u'   --sysobjects中本来就有name,不用再转换
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status<>0    --@@fetch_status=0表示语句执行成功
begin
if (select count(*) from @tbname)=0  --不能直接from 变量这种形式,要用动态SQL
then  --SQL里没有then
exec('drop table'+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

#25


谢谢“与君共勉”,看得出你是一个数据库老手了,写代码排列整齐,变量命名明了。我想把这个问题再深入一下:扫描所有的用户表,如果是空表则删除,如果不为空则扫描这个表的每一个字段,把没有内容的字段删除。另外想学习动态SQL语句在哪有资料,我找了很多的书店都没有相关的书籍啊。

#26


呵呵,别夸我,我是新手!

为空字段是什么意思啊?是NULL还是空字符啊?

#27


TO:与君共勉
你一直在线上吧,这么快就看到了。
我说的为空就是没有内容,也可以理解为空字符,不是NULL.
另外,你写的select 1 from '+@tbname+',1什么意思,能解释一下吗?

#28


路过,学习...

#29


1.简介:
    作为DBA会经常需要检查所有的数据库或用户表,比如:检查所有数据库的容量;看看指定数据库所有用户表的容量,所有表的记录数...,我们一般处理这样的问题都是用游标分别处理处理,比如:在数据库检索效率非常慢时,我们想检查数据库所有的用户表,我们就必须通过写游标来达到要求;如果我们用sp_MSforeachtable就可以非常方便的达到相同的目的:EXEC sp_MSforeachtable @command1="print '?' DBCC CHECKTABLE ('?')"
    系统存储过程sp_MSforeachtable和sp_MSforeachdb,是微软提供的两个不公开的存储过程,从mssql6.5开始。存放在SQL Server的MASTER数据库中。可以用来对某个数据库的所有表或某个SQL服务器上的所有数据库进行管理,后面将对此进行详细介绍。

2.参数说明:
  @command1 nvarchar(2000),                     --第一条运行的SQL指令
  @replacechar nchar(1) = N'?',                     --指定的占位符号 
  @command2 nvarchar(2000)= null,           --第二条运行的SQL指令
  @command3 nvarchar(2000)= null,           --第三条运行的SQL指令
  @whereand nvarchar(2000)= null,              --可选条件来选择表
  @precommand nvarchar(2000)= null,       --执行指令前的操作(类似控件的触发前的操作)
  @postcommand nvarchar(2000)= null      --执行指令后的操作(类似控件的触发后的操作)

  以后为sp_MSforeachtable的参数,sp_MSforeachdb不包括参数@whereand

3.使用举例:

  --统计数据库里每个表的详细情况:
  exec sp_MSforeachtable @command1="sp_spaceused '?'"

  --获得每个表的记录数和容量:
  EXEC sp_MSforeachtable @command1="print '?'",
       @command2="sp_spaceused '?'",
       @command3= "SELECT count(*) FROM ? "

  --获得所有的数据库的存储空间:
  EXEC sp_MSforeachdb  @command1="print '?'",
       @command2="sp_spaceused "

  --检查所有的数据库
  EXEC sp_MSforeachdb  @command1="print '?'",
       @command2="DBCC CHECKDB (?) "

  --更新PUBS数据库中已t开头的所有表的统计:
  EXEC sp_MSforeachtable @whereand="and name like 't%'",
       @replacechar='*',
       @precommand="print 'Updating Statistics.....' print ''",
       @command1="print '*' update statistics * ",
       @postcommand= "print''print 'Complete Update Statistics!'"

  --删除当前数据库所有表中的数据
  sp_MSforeachtable @command1='Delete from ?'
  sp_MSforeachtable @command1 = "TRUNCATE TABLE ?" 

4.参数@whereand的用法:


  @whereand参数在存储过程中起到指令条件限制的作用,具体的写法如下:
  @whereend,可以这么写 @whereand=' AND o.name in (''Table1'',''Table2'',.......)'
  例如:我想更新Table1/Table2/Table3中NOTE列为NULL的值
  sp_MSforeachtable @command1='Update ? Set NOTE='''' Where NOTE is NULL',@whereand=' AND o.name in (''Table1'',''Table2'',''Table3'')'

5."?"在存储过程的特殊用法,造就了这两个功能强大的存储过程.

      这里"?"的作用,相当于DOS命令中、以及我们在WINDOWS下搜索文件时的通配符的作用。 

6.小结


  有了上面的分析,我们可以建立自己的sp_MSforeachObject:(转贴)
USE MASTER
GO
CREATE proc sp_MSforeachObject
 @objectType int=1,
 @command1 nvarchar(2000), 
 @replacechar nchar(1) = N'?', 
 @command2 nvarchar(2000) = null,
    @command3 nvarchar(2000) = null, 
 @whereand nvarchar(2000) = null,
 @precommand nvarchar(2000) = null, 
 @postcommand nvarchar(2000) = null
as
 /* This proc returns one or more rows for each table (optionally, matching @where), with each table defaulting to its 
own result set */
 /* @precommand and @postcommand may be used to force a single result set via a temp table. */
 /* Preprocessor won't replace within quotes so have to use str(). */
 declare @mscat nvarchar(12)
 select @mscat = ltrim(str(convert(int, 0x0002)))
 if (@precommand is not null)
  exec(@precommand)
 /* Defined  @isobject for save object type */
 Declare @isobject varchar(256)
 select @isobject= case @objectType when 1 then 'IsUserTable'
         when 2 then 'IsView'
         when 3 then 'IsTrigger'
         when 4 then 'IsProcedure' 
         when 5 then 'IsDefault'   
         when 6 then 'IsForeignKey'
         when 7 then 'IsScalarFunction'
         when 8 then 'IsInlineFunction'
         when 9 then 'IsPrimaryKey'
         when 10 then 'IsExtendedProc'    
         when 11 then 'IsReplProc'
         when 12 then 'IsRule'
                  end
 /* Create the select */
 /* Use @isobject variable isstead of IsUserTable string */
EXEC(N'declare hCForEach cursor global for select ''['' + REPLACE(user_name(uid), N'']'', N'']]'') + '']'' + ''.'' + ''['' + 
REPLACE(object_name(id), N'']'', N'']]'') + '']'' from dbo.sysobjects o '
        + N' where OBJECTPROPERTY(o.id, N'''+@isobject+''') = 1 '+N' and o.category & ' + @mscat + N' = 0 '
       + @whereand)
 declare @retval int
 select @retval = @@error
 if (@retval = 0)
  exec @retval = sp_MSforeach_worker @command1, @replacechar, @command2, @command3
 if (@retval = 0 and @postcommand is not null)
  exec(@postcommand)
 return @retval
GO

这样我们来测试一下:
   --获得所有的存储过程的脚本:
         EXEc sp_MSforeachObject @command1="sp_helptext '?' ",@objectType=4
   --获得所有的视图的脚本:
         EXEc sp_MSforeachObject @command1="sp_helptext '?' ",@objectType=2
   --比如在开发过程中,没一个用户都是自己的OBJECT OWNER,所以在真实的数据库时都要改为DBO:
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=1
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=2
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=3
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=4
   这样就非常方便的将每一个数据库对象改为DBO.
 

#30


精彩

#31


sunliqing99() ( ) 信誉:100  2007-07-20 19:07:54  得分: 0  
 
另外,你写的select 1 from '+@tbname+',1什么意思,能解释一下吗?

-------------------------------------------------------
'select 1 from '+表名  ,用在存在性判断里有记录就会返回1.也可以写成*,字段名或其它常数都可以.
 

#32


收藏

#33


关注

#34


NB

#35


exec sp_msforeachtable "if not exists(select 1 from ?) drop table ?"
记住了 ~-~

#36


mark

#37


精彩,关注>

#38


不得不Mark

#1


看過鄒老大一篇查詢記錄數大於一定值的表的貼子,但是忘了收藏....

#2


關注

#3


小弟有个建议,
1,先用  select name from sysobjects  where xtype = 'u' 定义个游标。
2,在游标中取出每个表名,然后,select count(*) from table_name
3, 看看哪个表的记录为0,就drop table 
4,因为时间关系我没有试,
你试试看!

#4


小弟有个建议,
1,先用  select name from sysobjects  where xtype = 'u' 定义个游标。
2,在游标中取出每个表名,然后,select count(*) from table_name
3, 看看哪个表的记录为0,就drop table 
4,因为时间关系我没有试,
你试试看!

#5


小弟有个建议,
1,先用  select name from sysobjects  where xtype = 'u' 定义个游标。
2,在游标中取出每个表名,然后,select count(*) from table_name
3, 看看哪个表的记录为0,就drop table 
4,因为时间关系我没有试,
你试试看!

#6


declare @tbname varchar(100)
declare cur_tmp cursor for
select object_name(id) from sysindexes where indid in (0,1) and rows=0
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status=0
begin
exec('drop table '+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

#7


exec sp_msforeachtable "if not exists(select 1 from ?) drop table ?"

#8


没公开的东东,就是好啊 sp_msforeachtable

#9


顶 "树上的鸟儿",太强悍了。

#10


看来有时间得研究下数据库里的存储过程了.
select name from master.dbo.sysobjects where objectproperty(id,'IsProcedure')=1
获得存储过程名
然后用exec master.dbo.sp_helptext name
来查看具体内容,希望和我一样刚入门的少走弯路.

#11


关注一下

#12


exec sp_msforeachtable "if not exists(select 1 from ?) drop table ?"
非常经典

#13


存储过程用得好,厉害

#14


精通了 ,-_-!

#15


拜谢大哥大姐们。

#16


大强了,chuifengde(树上的鸟儿) 大强了,如何才能走上这种道路啊

#17


看来有时间得研究下数据库里的存储过程了.
select name from master.dbo.sysobjects where objectproperty(id,'IsProcedure')=1
获得存储过程名
然后用exec master.dbo.sp_helptext name
来查看具体内容,希望和我一样刚入门的少走弯路.


一个个看??有没有手册学下啊

#18


這些存儲過程大部分都是MS沒有公佈的,上哪去找手冊

#19


declare @name varchar(50)

declare cursor roy for
select a.name from sysobjects a,sysindexes b 
where a.xtype='u' and a.name !='sysdiagrams' and a.id=b.id and b.indid in (0,1) and b.rows=0

open roy
fetch next from roy into @name
while (@@fetch_status=0)
begin
exec('delete from '+@name)
fetch next from roy into @name
end
close roy
deallocate roy

#20


樓上

delete from 是刪除表的嗎?呵呵

-_-#

#21


mark~~

#22


补充一点,我是想删除所有用户表中的空表,我参考“与君共勉”的写了一个,可是调试不过去,大家帮我看一下吧。
declare @tbname varchar(100)
declare cur_tmp cursor for
select object_name(id) from sysobjects where xtype='u'
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status<>0
begin
if (select count(*) from @tbname)=0
then
exec('drop table'+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

#23


学习了

这个系统的存储过程,有时间的话多了解些挺有用

不过也是个耗时间的工程啊

#24


补充一点,我是想删除所有用户表中的空表,我参考“与君共勉”的写了一个,可是调试不过去,大家帮我看一下吧。
-----------------------------------------------------------
这是改过的
declare @tbname varchar(100)
declare cur_tmp cursor for
select name from sysobjects where xtype='u'
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status=0
begin
exec('if not exists(select 1 from '+@tbname+') drop table '+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

----------------------------------------------------------
declare @tbname varchar(100)
declare cur_tmp cursor for
select object_name(id) from sysobjects where xtype='u'   --sysobjects中本来就有name,不用再转换
open cur_tmp
fetch next from cur_tmp into @tbname
while @@fetch_status<>0    --@@fetch_status=0表示语句执行成功
begin
if (select count(*) from @tbname)=0  --不能直接from 变量这种形式,要用动态SQL
then  --SQL里没有then
exec('drop table'+@tbname)
fetch next from cur_tmp into @tbname
end
close cur_tmp
deallocate cur_tmp

#25


谢谢“与君共勉”,看得出你是一个数据库老手了,写代码排列整齐,变量命名明了。我想把这个问题再深入一下:扫描所有的用户表,如果是空表则删除,如果不为空则扫描这个表的每一个字段,把没有内容的字段删除。另外想学习动态SQL语句在哪有资料,我找了很多的书店都没有相关的书籍啊。

#26


呵呵,别夸我,我是新手!

为空字段是什么意思啊?是NULL还是空字符啊?

#27


TO:与君共勉
你一直在线上吧,这么快就看到了。
我说的为空就是没有内容,也可以理解为空字符,不是NULL.
另外,你写的select 1 from '+@tbname+',1什么意思,能解释一下吗?

#28


路过,学习...

#29


1.简介:
    作为DBA会经常需要检查所有的数据库或用户表,比如:检查所有数据库的容量;看看指定数据库所有用户表的容量,所有表的记录数...,我们一般处理这样的问题都是用游标分别处理处理,比如:在数据库检索效率非常慢时,我们想检查数据库所有的用户表,我们就必须通过写游标来达到要求;如果我们用sp_MSforeachtable就可以非常方便的达到相同的目的:EXEC sp_MSforeachtable @command1="print '?' DBCC CHECKTABLE ('?')"
    系统存储过程sp_MSforeachtable和sp_MSforeachdb,是微软提供的两个不公开的存储过程,从mssql6.5开始。存放在SQL Server的MASTER数据库中。可以用来对某个数据库的所有表或某个SQL服务器上的所有数据库进行管理,后面将对此进行详细介绍。

2.参数说明:
  @command1 nvarchar(2000),                     --第一条运行的SQL指令
  @replacechar nchar(1) = N'?',                     --指定的占位符号 
  @command2 nvarchar(2000)= null,           --第二条运行的SQL指令
  @command3 nvarchar(2000)= null,           --第三条运行的SQL指令
  @whereand nvarchar(2000)= null,              --可选条件来选择表
  @precommand nvarchar(2000)= null,       --执行指令前的操作(类似控件的触发前的操作)
  @postcommand nvarchar(2000)= null      --执行指令后的操作(类似控件的触发后的操作)

  以后为sp_MSforeachtable的参数,sp_MSforeachdb不包括参数@whereand

3.使用举例:

  --统计数据库里每个表的详细情况:
  exec sp_MSforeachtable @command1="sp_spaceused '?'"

  --获得每个表的记录数和容量:
  EXEC sp_MSforeachtable @command1="print '?'",
       @command2="sp_spaceused '?'",
       @command3= "SELECT count(*) FROM ? "

  --获得所有的数据库的存储空间:
  EXEC sp_MSforeachdb  @command1="print '?'",
       @command2="sp_spaceused "

  --检查所有的数据库
  EXEC sp_MSforeachdb  @command1="print '?'",
       @command2="DBCC CHECKDB (?) "

  --更新PUBS数据库中已t开头的所有表的统计:
  EXEC sp_MSforeachtable @whereand="and name like 't%'",
       @replacechar='*',
       @precommand="print 'Updating Statistics.....' print ''",
       @command1="print '*' update statistics * ",
       @postcommand= "print''print 'Complete Update Statistics!'"

  --删除当前数据库所有表中的数据
  sp_MSforeachtable @command1='Delete from ?'
  sp_MSforeachtable @command1 = "TRUNCATE TABLE ?" 

4.参数@whereand的用法:


  @whereand参数在存储过程中起到指令条件限制的作用,具体的写法如下:
  @whereend,可以这么写 @whereand=' AND o.name in (''Table1'',''Table2'',.......)'
  例如:我想更新Table1/Table2/Table3中NOTE列为NULL的值
  sp_MSforeachtable @command1='Update ? Set NOTE='''' Where NOTE is NULL',@whereand=' AND o.name in (''Table1'',''Table2'',''Table3'')'

5."?"在存储过程的特殊用法,造就了这两个功能强大的存储过程.

      这里"?"的作用,相当于DOS命令中、以及我们在WINDOWS下搜索文件时的通配符的作用。 

6.小结


  有了上面的分析,我们可以建立自己的sp_MSforeachObject:(转贴)
USE MASTER
GO
CREATE proc sp_MSforeachObject
 @objectType int=1,
 @command1 nvarchar(2000), 
 @replacechar nchar(1) = N'?', 
 @command2 nvarchar(2000) = null,
    @command3 nvarchar(2000) = null, 
 @whereand nvarchar(2000) = null,
 @precommand nvarchar(2000) = null, 
 @postcommand nvarchar(2000) = null
as
 /* This proc returns one or more rows for each table (optionally, matching @where), with each table defaulting to its 
own result set */
 /* @precommand and @postcommand may be used to force a single result set via a temp table. */
 /* Preprocessor won't replace within quotes so have to use str(). */
 declare @mscat nvarchar(12)
 select @mscat = ltrim(str(convert(int, 0x0002)))
 if (@precommand is not null)
  exec(@precommand)
 /* Defined  @isobject for save object type */
 Declare @isobject varchar(256)
 select @isobject= case @objectType when 1 then 'IsUserTable'
         when 2 then 'IsView'
         when 3 then 'IsTrigger'
         when 4 then 'IsProcedure' 
         when 5 then 'IsDefault'   
         when 6 then 'IsForeignKey'
         when 7 then 'IsScalarFunction'
         when 8 then 'IsInlineFunction'
         when 9 then 'IsPrimaryKey'
         when 10 then 'IsExtendedProc'    
         when 11 then 'IsReplProc'
         when 12 then 'IsRule'
                  end
 /* Create the select */
 /* Use @isobject variable isstead of IsUserTable string */
EXEC(N'declare hCForEach cursor global for select ''['' + REPLACE(user_name(uid), N'']'', N'']]'') + '']'' + ''.'' + ''['' + 
REPLACE(object_name(id), N'']'', N'']]'') + '']'' from dbo.sysobjects o '
        + N' where OBJECTPROPERTY(o.id, N'''+@isobject+''') = 1 '+N' and o.category & ' + @mscat + N' = 0 '
       + @whereand)
 declare @retval int
 select @retval = @@error
 if (@retval = 0)
  exec @retval = sp_MSforeach_worker @command1, @replacechar, @command2, @command3
 if (@retval = 0 and @postcommand is not null)
  exec(@postcommand)
 return @retval
GO

这样我们来测试一下:
   --获得所有的存储过程的脚本:
         EXEc sp_MSforeachObject @command1="sp_helptext '?' ",@objectType=4
   --获得所有的视图的脚本:
         EXEc sp_MSforeachObject @command1="sp_helptext '?' ",@objectType=2
   --比如在开发过程中,没一个用户都是自己的OBJECT OWNER,所以在真实的数据库时都要改为DBO:
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=1
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=2
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=3
         EXEc sp_MSforeachObject @command1="sp_changeobjectowner '?', 'dbo'",@objectType=4
   这样就非常方便的将每一个数据库对象改为DBO.
 

#30


精彩

#31


sunliqing99() ( ) 信誉:100  2007-07-20 19:07:54  得分: 0  
 
另外,你写的select 1 from '+@tbname+',1什么意思,能解释一下吗?

-------------------------------------------------------
'select 1 from '+表名  ,用在存在性判断里有记录就会返回1.也可以写成*,字段名或其它常数都可以.
 

#32


收藏

#33


关注

#34


NB

#35


exec sp_msforeachtable "if not exists(select 1 from ?) drop table ?"
记住了 ~-~

#36


mark

#37


精彩,关注>

#38


不得不Mark