当前位置: 代码迷 >> Sql Server >> sql sever 怎么创建带条件的唯一性索引(05 精简版)
  详细解决方案

sql sever 怎么创建带条件的唯一性索引(05 精简版)

热度:273   发布时间:2016-04-24 08:58:38.0
sql sever 如何创建带条件的唯一性索引(05 精简版)
问题描述:
带条件的复合索引 
索引字段 (a,b,c,d) 
条件 
a不为空的时候,(a,b,c,d)组成的复合索引唯一 
a为空时,不做限制 

08版的sql sever可以这样写:
IF EXISTS(SELECT object_name(object_id) tableName,name,type_desc from sys.indexes where name= 'idx')
alter table tableName drop constraint idx
GO

create unique nonclustered index idx on table1(a,b,c,d) where a<> '';
GO

05版的就不知道,求05版的写法!
------解决思路----------------------

你用的是2008里的条件索引吧,在2005里还不支持这种索引。
  相关解决方案