2011-12-20 31 views
5

問題があります。別のテーブルの複合キーに1つの外部キーを参照する必要があります。複合キーの外部キー

次のように私のデータベース構造は次のとおりです。

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)