今日、「PHP と MySQL、Web 開発」という本を読み、コードに従って SQL スクリプトをコピーし、PHPMyadmin を使用してアップロードする準備をしましたが、以上のことを確認すると、次のようなエラー メッセージが表示されます。 1時間経っても理解できません。どこが間違っているのでしょうか?専門家に助けを求めてください。 。 。
コードは次のとおりです:
create table customers{ customerid int unsigned not null auto_increment primary key, name char(50) not null, address char(100) not null, city char(30) not null};create table orders{ orderid int unsigned not null auto_increment primary key, customerid int unsigned not null, amout float(6,2), date date not null};create table books{ isbn char(13) not null primary key, author char(50), title char(50), price float(4,2)};create table order_items{ orderid int unsigned not null, isbn char(13) not null, quantity tinyint unsigned, primary key(orderid,isbn)};create table book_reviews{ isbn char(13) not null primary key, review text};