问题描述:
带条件的复合索引
索引字段 (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里还不支持这种索引。