SQLServer2005 判斷數據庫中是否存在某張表或是查找庫中的全部表名,而後刪除

根據表名的個數判斷:
select count(name) as co from sysobjects where name = 'TD_RXNFDM'table

查找苦中全部表的表名:
SELECT [name] FROM sysobjects WHERE type='u'object

刪除某表: 
   if exists (select name from sysobjects where name = '表名')
   drop table 表名select

相關文章
相關標籤/搜索