达梦条件表达式的方式建立唯一约束

达梦数据库的组合索引唯一约束不同于pg和MySQL,对于NULL值得处理无法添加,对于值(1,NULL)(1,NULL)插入会报违反唯一约束。
示例如下:

create table test_uq(id int ,t1 int);
create   unique index id_idx on test_uq1(id);
insert into test_uq values(1,null);
insert into test_uq values(1,null); -----6602: 违反表[TEST_UQ]唯一性约束

通过建立条件表达式组合索引

create unique index id_t1_uq on test_uq(case when t1 is null then null else cast(id as varchar)||','|| cast(t1 as varchar) end) --非聚集型唯一函数索引
insert into test_uq values(1,null);
insert into test_uq values(1,null);

在这里插入图片描述
缺点:该方式虽然满足了需求,但是无法走索引查询数据。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值