发布网友 发布时间:2022-04-25 04:08
共1个回答
热心网友 时间:2022-04-22 10:17
if exists(select 1 from master..sysdatabases where name='你要检测的数据库名')追答 if exists
(select count(*) from sysobjects where id = object_id('数据库名.Owner.表名'))
print '存在'
else
print '不存在'