「注文」テーブルを作成するときにエラーが発生し続けます。何か案は?「顧客」テーブルは、列と同様に既に存在しcust#
ます。前もって感謝します。
create table orders(
`order#` char(4) not null,
orderdate date not null,
`cust#` char(4) not null,
amount decimal(10,2) not null,
primary key (`order#`),
foreign key (`cust#`) references customer (`cust#`)
on delete cascade on update cascade
) engine=InnoDB;
編集:単にタイプミス。ご回答ありがとうございます。