if exists (select 1 from sysobjects where name = '表名' and xtype = 'p')
print 存在
------解决方案--------------------
SQL code
select count(1) from sysobjects where xtype='U'
if object_id('表名') is not null
print '有'
else
print '沒'
------解决方案--------------------
SQL code
--1sql语句来判断数据库里有多少表
select count(*) from sys.tables
--2
if object_id('数据库.架构.表') is not null
print '存在'
else
print '不存在'
------解决方案--------------------