在 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/