标签: database oracle constraints unique-constraint
如何在prod_name表的表prod_type和products列上添加条件唯一约束。
prod_name
prod_type
products
我想仅在prod_type = 'LOCAL'
prod_type = 'LOCAL'
我怎么能这样做?
答案 0 :(得分:3)
如果我理解正确,你想要这个:
create unique index products_name_ui on products (case when prod_type = 'LOCAL' then prod_name else null end);