本文主要是介绍mysql 报错 1063 - Incorrect column specifier for column,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
create table `grade`(
`gradeid` VARCHAR(50) not null AUTO_INCREMENT comment '编号',
`gradename` VARCHAR(50) not null comment '名称',primary key(`gradeid`)
)ENGINE=INNODB DEFAULT CHARSET=utf8;
[Err] 1063 - Incorrect column specifier for column ‘gradeid’
分析 因为 使用了 auto_increment 所以字段的;类型应该是 int 而不是其他的类型
修改
`gradeid` int(4) not null AUTO_INCREMENT comment '编号',
这篇关于mysql 报错 1063 - Incorrect column specifier for column的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!