首頁
返回
下一步
最後一頁
摘要
圖形
Constraint(五)
create table sale_adv
(mon integer not null,
sid integer references service(sid),
cid character (10) ,
color char(10),
num integer not null,
FOREIGN KEY (cid, color) REFERENCES car_adv (cid, color)
);