首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > Sybase >

怎样判断某个表是否存在?该如何处理

2012-02-13 
怎样判断某个表是否存在?在Sybase数据库中用什么方法判断一个表的存在?用什么存储过程?还是什么查询语句?[

怎样判断某个表是否存在?
在Sybase数据库中用什么方法判断一个表的存在?
用什么存储过程?还是什么查询语句?

[解决办法]
select 1 from sysobjects where name= 'tablename '
[解决办法]
select 1 from dbo.sysobjects where name = :ps_tabname and type = 'U '
[解决办法]
select name from sysobjects where name= "tablename" and type = "U"
[解决办法]
if exists(select 1 from sysobjects where name = '表名' and type = 'U')
print "存在"
else
print "不存在"

热点排行