我有三张表 Teachers、Student、ViewType
table Teachers{
Id uniqueidentifier,
Name nvarchar
}
table Student{
Id uniqueidentifier,
Name nvarchar
}
table ViewType{
Id uniqueidentifier,
Type String
}
注意:假设 ViewType 不是常规查找表的示例。
它包含有关如何在 ui 中呈现教师或学生的数据,因此不应在教师或学生表模型中。
有没有办法为两个表创建一个外键,其中一个键被强制来自并且仅来自这两个表?谢谢。