您将如何为这个呃图表创建 table 语句?
How would you create table statement for this er diagram?
哪些属性会出现在展示位置 table?
如果是一对一关系,create table语句怎么写?这是正确的吗
Placement Table 和 sid 中不需要 x 和 y。我会这样做:
CREATE TABLE Placement (
pid int NOT NULL,
is_critical bool,
PRIMARY KEY (pid),
FOREIGN KEY (hid) REFERENCES Hold(hid),
FOREIGN KEY (rid) REFERENCES Route(rid),
FOREIGN KEY (sid) REFERENCES Slot(sid));
哪些属性会出现在展示位置 table?
如果是一对一关系,create table语句怎么写?这是正确的吗
Placement Table 和 sid 中不需要 x 和 y。我会这样做:
CREATE TABLE Placement (
pid int NOT NULL,
is_critical bool,
PRIMARY KEY (pid),
FOREIGN KEY (hid) REFERENCES Hold(hid),
FOREIGN KEY (rid) REFERENCES Route(rid),
FOREIGN KEY (sid) REFERENCES Slot(sid));