http://www.sendspace.com/file/txjcvd
こんにちは、PHP/MySql の初心者です。id、productname、productprice、および在庫数を含む 25 個のアイテムからなる単純なデータベースを作成しようとしています。
create table id(
id int(11) unsigned auto_increment primary key not null,
productname varchar(25) not null,
prodprice int(11) not null,
stockquant int(11) not null;
しかし、構文のどの部分が間違っているのかわかりませんか?