如果我有一个复杂的主键,是否可以仅为其中的一列创建外键?

发布于 2024-11-30 13:37:35 字数 216 浏览 0 评论 0原文

我有这个:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉城凉梦凉人心 2024-12-07 13:37:35

不,你不能。
外键必须引用所引用表中的主键或另一个超键(唯一标识该表中的行的一组属性/列,无论它是否是实际声明的主键)。
维基百科文章也值得一读。

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.

落日海湾 2024-12-07 13:37:35

从技术上讲,你可以做任何你想做的事情。但理论上这打破了主键和外键的主要概念。其实这只是一个条件问题。我不确定你的例子中的键是否可以称为外键。也许我们可以称之为部分外键什么的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文