gpt4 book ai didi

php - 错误 1064 (42000) 语法错误 - 哪里?

转载 作者:行者123 更新时间:2023-11-29 13:27:38 25 4
gpt4 key购买 nike

http://www.sendspace.com/file/txjcvd

嗨,PHP/MySql 新手,尝试创建一个包含 25 种杂项的简单数据库,其中包含:id、产品名称、产品价格和库存数量。

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;

但是我似乎无法弄清楚语法的哪一部分是错误的?

最佳答案

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
;

; 之前不应该有一个 ) 吗?考虑第一行 id 之后的 (?(正如其他几个人评论的那样)

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
);

关于php - 错误 1064 (42000) 语法错误 - 哪里?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19914143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com