SyBase:根据列的值创建唯一索引
我希望我的表仅在 ColumnA 的值等于某个值时才防止重复条目。
例如,假设我的 TableA( ColumnA, ColumnB, ColumnC )
中已有两条记录,其值为 ( 0, 'Damage', 'Inc.')
和(1, '损坏', 'Inc.')
。
我希望我的索引允许插入另一个 ( 0, 'Damage', 'Inc.')
,但阻止插入另一个 ( 1, 'Damage', 'Inc.') .')
。我只希望出现一个 ColumnA=1 的条目,但可能存在多个 ColumnA=0 的重复条目。这可能吗?
我发现存在基于函数的索引,但我无法让它们适用于表达式 ColumnA=1
。
I want my table to prevent duplicate entries only if the value of ColumnA
is equal to a certain value.
For example, let's say there are already two records in my TableA( ColumnA, ColumnB, ColumnC )
with the values ( 0, 'Damage', 'Inc.')
and ( 1, 'Damage', 'Inc.')
.
I'd like my index to allow the insertion of another ( 0, 'Damage', 'Inc.')
, but prevent the insertion of another ( 1, 'Damage', 'Inc.')
. I want only one entry present with ColumnA=1, but there can be several duplicate entries with ColumnA=0. Is this possible?
I found that there are function-based indexes, but I couldn't fit them to work for the expression ColumnA=1
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用触发器控制此插入。
You can control this insertion with trigger.