首页 > 数据库 > SQL Server > 正文

Sql Server 语句集合

2024-08-31 00:54:58
字体:
来源:转载
供稿:网友
Sql Server 语句集合 2015-01-12 15:09 by xtechnet, ... 阅读, ... 评论, 收藏, 编辑

-- 判断数据库表是否存在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不存在


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表