foreign key references 除了关联外键,还可以关联 候选键(unique)
需求
table1 中的 status int 类型 ,表示状态 ,0 未启动 ,1 已启动,2 已完成
table2 中
id int identity(1,1) primary key ,
statusType int unique not null ,
statusName nvarchar(20)
table1
create table table1
(
id int identity(1,1) primary key ,
TB1Row nvarchar(20),
T1status int foreign key references dbo.table2(TB2id2)
)