如果我有一个复杂的主键,是否可以仅为其中的一列创建外键?
我有这个:
ID1 INTEGER PRI
ID2 INTEGER PRI
NAME VARCHAR
现在我需要:
ID1_REF INTEGER REFERENCE TO ID1
DESCRIPTION VARCHAR
所以,一列指主键的一列,而不是两列。在关系数据库中是否可能?
I have this:
ID1 INTEGER PRI
ID2 INTEGER PRI
NAME VARCHAR
now I need to:
ID1_REF INTEGER REFERENCE TO ID1
DESCRIPTION VARCHAR
so, one column refers to one column of primary key, not to 2 column. Is it even possible in relational databases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不能。
外键必须引用所引用表中的主键或另一个超键(唯一标识该表中的行的一组属性/列,无论它是否是实际声明的主键)。
维基百科文章也值得一读。
No you can't.
The foreign key must reference either the primary key or another superkey (a set of attributes/columns that uniquely identifies the row in that table, whether or not that is the actual declared primary key) in the referenced table.
It's worth reading the Wikipedia article as well.
从技术上讲,你可以做任何你想做的事情。但理论上这打破了主键和外键的主要概念。其实这只是一个条件问题。我不确定你的例子中的键是否可以称为外键。也许我们可以称之为部分外键什么的。
Technically you can do anything you want. But theoretically this breaks the main concept of primary and foreign keys. Actually it's just a question of terms. I am not sure if the key in your example can be called a foreign key. Maybe we can call it a partial foreign key or something.