gpt4 book ai didi

mysql - 'unsigned int ..' 附近未知的 CREATE TABLE 语法错误

转载 作者:行者123 更新时间:2023-11-29 06:41:14 27 4
gpt4 key购买 nike

我已经盯着这个简单的 CREATE TABLE 查询 20 分钟了,但我不明白为什么它会抛出错误:

create table `schema_change` (
`schema_change_id` unsigned int not null auto_increment,
`major_release_number` unsigned int not null,
`minor_release_number` unsigned int not null,
`point_release_number` unsigned int not null,
`script_name` varchar(100) not null,
`date_applied` datetime not null,
constraint `pk_schema_change` primary key (
`schema_change_id`
)
);

返回的错误是一个基本语法错误,但我找不到任何不正确的语法:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'unsigned int not null, minor_release_number unsigned int not null, point_rel' at line 3

我错过了什么?

(使用MySQL版本5.1.73)

最佳答案

UNSIGNED 是一个类型属性,并且必须位于类型名称之后:INT UNSIGNED,而不是 UNSIGNED INT

关于mysql - 'unsigned int ..' 附近未知的 CREATE TABLE 语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51548607/

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