2011-12-20 187 views
5

我有一個問題,我需要在另一個表中引用一個複合鍵的外鍵。複合鍵的外鍵

我的數據庫結構如下:

CREATE TABLE available_trip (
trip_code integer not null, 
date datetime not null, 
primary key(trip_code, date), 
FOREIGN KEY (trip_code) REFERENCES trip (trip_code) 
); 

CREATE TABLE booking (
    available_trip_code integer not null, 
    customer_code integer not null, 
    date datetime not null, 
    deposit float not null, 
    total_price float not null, 
    has_paid float not null, 
    description_en nvarchar(12) null, 
    finance_type_code nvarchar(12) not null, 
    primary key(available_trip_code, customer_code, date), 
    FOREIGN KEY (available_trip_code) REFERENCES available_trip (trip_code, date), 


FOREIGN KEY (customer_code) REFERENCES customer (customer_code), 
      FOREIGN KEY (finance_type_code) REFERENCES finance_type (finance_type_code) 
     ); 

我的問題是:我怎麼讓​​參考available_trip.trip_codeavailable_trip.date

回答

9

如果你引用一個複合主鍵,你的外鍵也需要包含所有這些列 - 所以你需要這樣的東西:

FOREIGN KEY (available_trip_code, date) 
      REFERENCES available_trip (trip_code, date) 

如果你還沒有在你的表目前所有這些列,那麼你需要添加它們。

4
alter table booking add constraint FK_Booking_TripAndDate 
    foreign key (available_trip_code,date) 
    references available_trip(trip_code, date)