我需要使用 SQL Server 在我的表中定义唯一索引键。
例如:
ID Contact1 Contact2 RelationType
-------------------------------------------------------------------
1 1 2 sister // 1 is the 2nd sister
2 3 4 brother // 3 is the 4th brother
3 5 1 father // 5 is the 1st father
4 2 1 sister // bad entry !!!
现在,我如何禁止使用唯一索引键在上表中插入错误数据,如上表中的第 4 个 ID?