根據表名的個數判斷: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