gpt4 book ai didi

mysql - 当我尝试创建表时在 mysql 上出现错误 1064 <42000>

转载 作者:太空宇宙 更新时间:2023-11-03 10:21:53 26 4
gpt4 key购买 nike

CREATE TABLE `photos` (
`title` varchar(255) not null,
`id` int(11) not null,
`ph_path` varchar(255) not null,
`description` varchar(255) not null,
`privilange` varchar(20) not null,
`owner` varchar(60) not null,
`provoles` int(11),
PRIMARY KEY (`id`),

) ENGINE=InnoDB DEFAULT CHARSET=greek;

我得到 error 1064 <4200>我不确定哪里出了问题。

最佳答案

您在主键中有一个尾随逗号:

PRIMARY KEY (`id`), <--- remove that

完整的错误应该是这样的:

check the manual that corresponds to your MySQL server version for the right syntax to use near ') ENGINE=InnoDB

在 MySQL 中,错误消息 (near ')ENGINE) 所指向的位置将向您显示紧接在发生错误的之后 的字符。查看语句中的前一件事,您会发现语法错误。

关于mysql - 当我尝试创建表时在 mysql 上出现错误 1064 <42000>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10521118/

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