SyBase:根据列的值创建唯一索引

发布于 2024-12-11 07:22:33 字数 406 浏览 0 评论 0原文

我希望我的表仅在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南薇 2024-12-18 07:22:33

您可以使用触发器控制此插入。

You can control this insertion with trigger.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文