0
create table date_dimension (
id serial primary key,
date_id date,
..... others
);
create table temp (
id serial primary key,
from_date integer,
to_date integer,
value integer,
foreign key (from_date, to_date) references date_dimension(id, id)
);
我怎樣才能既指from_date
和to_date
到id
場date_dimension
?
當前的代碼無法做到這一點說Postgres的:兩個外鍵,以相同的主鍵字段
ERROR: there is no unique constraint matching given keys for referenced table "date_dimension"
謝謝
我現在看到這個 - 錯誤:關係「date_dimension」的列「id」已經存在 – daydreamer
@daydreamer:這聽起來像一個新問題,請到目前爲止的所有代碼問一個新問題。 – SingleNegationElimination
嗨@TokenMacGuy,這是因爲我的愚蠢,你的解決方案是岩石!感謝:) – daydreamer