gpt4 book ai didi

SQL 多个外键作为主键

转载 作者:行者123 更新时间:2023-12-02 14:22:59 25 4
gpt4 key购买 nike

如果我声明下表,是否隐含意味着两个外键都是唯一的主键,或者我是否需要做更多操作才能将两个属性都设为主键?

CREATE TABLE Report_has_Items
(
ReportID int REFERENCES Report(ReportID) NOT NULL,
ItemID int REFERENCES Item(ItemID) NOT NULL
)

本质上,这两个属性都是来自其他表的外键,一起形成一个唯一的键。

最佳答案

不,没有。上表没有主键。如果您想使用字段作为主键,请使用:

CREATE TABLE Report_has_Items(
ReportID int REFERENCES Report(ReportID) NOT NULL,
ItemID int REFERENCES Item(ItemID) NOT NULL,
PRIMARY KEY (ReportID, ItemID)
)

或者类似的东西取决于你的sql dilect。

关于SQL 多个外键作为主键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15961213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com