当前位置: 代码迷 >> SQL >> Sql Server 话语集合
  详细解决方案

Sql Server 话语集合

热度:45   发布时间:2016-05-05 10:53:45.0
Sql Server 语句集合

 

-- 判断数据库表是否存在select count(*) from sysobjects where id=OBJECT_ID('tableName');-- 返回 1存在,0不存在-- 判断表字段是否存在select count(*) from syscolumns where id=OBJECT_ID('tableName') and name='colName';-- 返回1 存在,0不存在-- 判断字段索引是否存在select count(*) from sys.indexes where name='indexName';-- 返回1存在,0不存在

 

  相关解决方案