これは私の最初のテーブル「住所」です。
create table address(
street varchar(32) not null,
city varchar(32) not null,
state varchar(32) not null,
zip_code varchar(32) not null,
primary key(zip_code)
)
これは私の 2 番目のテーブル「顧客」です。
create table customer(
customer_id integer not null,
name varchar(32) not null,
primary key(customer_id)
)
これは、上記の 2 つのテーブルに関する私のリレーショナル テーブルです。でもどうして出来ないの?タイプがよく似合います。だからお願い。
create table cus_live(
customer_id integer not null,
zip_code varchar(32) not null,
primary key(customer_id, zip_code),
foreign key(customer_id) references customer,
foreign key(zip_code) references address
)