gpt4 book ai didi

SQL 约束问题

转载 作者:行者123 更新时间:2023-12-04 22:16:42 25 4
gpt4 key购买 nike

在 Sql Server 2005 中,我有一个包含两个整数列的表,分别称为 Id1 和 Id2。我需要它们在表中是唯一的(使用跨越两列的唯一索引很容易)。如果值在两列之间转置,我还需要它们在表中是唯一的。

例如,SELECT * FROM MyTable 返回

Id1   Id2
---------
2 4
5 8
7 2
4 2 <--- values transposed from the first row

如何创建一个约束以防止最后一行输入到表中,因为它们是第一行的转置值?

最佳答案

创建一个绑定(bind)到用户定义函数的检查约束,该函数对表执行选择以检查转置值。

Create table mytable(id1 int, id2 int)
go

create Function dbo.fx_Transposed(@id1 int, @id2 int)
returns bit as
Begin
Declare @Ret bit
Set @ret = 0
if exists(Select 1 from MyTable
Where id2 = @id1 and id1 = @id2)
Set @ret = 1
Return @ret
End
GO
Alter table mytable add
CONSTRAINT [CHK_TRANSPOSE] CHECK
(([dbo].[fx_Transposed]([ID1],[ID2])=(0)))
GO
Insert into mytable (id1, id2) values (1,2)

Insert into mytable (id1, id2) values (2,1)

关于SQL 约束问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/631979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com