日期:2014-05-18  浏览次数:20388 次

sqlserver能不能用sql语句来判断数据库里有多少表,判断某个表是否存在呢?有没有什么方法呢?
sqlserver能不能用sql语句来判断数据库里有多少表,判断某个表是否存在呢?如果不能请大侠们给点好方法!
非常感谢@!!!

------解决方案--------------------
SQL code
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 '不存在'

------解决方案--------------------
探讨

引用:
SQL code

--1sql语句来判断数据库里有多少表
select count(*) from sys.tables

--2
if object_id('数据库.架构.表') is not null
print '存在'
else
print '不存在'

我对于这方面的知识很欠缺,请问有没有什么资料可以推荐给我的,非常感谢……

------解决方案--------------------
探讨
引用:
引用:
引用:
SQL code
select count(1) from sysobjects where xtype='U'

if object_id('表名') is not null
print '有'
else
print '沒'

我对于这方面的知识很欠……