h2数据库的条件唯一索引

时间:2015-03-03 16:21:07

标签: oracle h2 unique-index

我有一个带有BIZ_ID列的SAMPLE_TABLE,当列激活不等于0时,该列应该是唯一的。

在oracle数据库中,索引如下所示:

  CREATE UNIQUE INDEX ACTIVE_ONLY_IDX ON SAMPLE_TABLE (CASE "ACTIVE" WHEN 0 THEN NULL ELSE "BIZ_ID" END );

这个唯一索引在h2数据库中的外观如何?

1 个答案:

答案 0 :(得分:7)

在H2中,您可以使用具有唯一索引的计算列:

create table test(
    biz_id int, 
    active int,
    biz_id_active int as 
      (case active when 0 then null else biz_id end) 
      unique
 );
 --works
 insert into test(biz_id, active) values(1, 0);
 insert into test(biz_id, active) values(1, 0);
 insert into test(biz_id, active) values(2, 1);
 --fails
 insert into test(biz_id, active) values(2, 1);