在我的 ERD 中,我有一个不相交的强制性关系。请参阅以下示例。
** 假设“Teen”和“Adult”实体有自己独特的属性。
如何映射这种关系。以及如何在表格中实现这一点。
[据我所知,您必须创建两个名为“Teen”和“Adult”的表。两者都有相同的主键“st_id”。但问题是,在两个表中,“st_id”必须是唯一的,因为关系是强制性的。如何实现?]
例子:
**Teen**
st_id | name
001 AA
002 BB
**Adult**
st_id | name
(as the st_id you can't have the value 001 again since it is already in the Teen table)