当前位置:Gxlcms > 数据库问题 > SQL执行错误#1064---保留字错误

SQL执行错误#1064---保留字错误

时间:2021-07-01 10:21:17 帮助过:25人阅读

CREATE TABLE IF NOT EXISTS `change` (
  `id` INT NOT NULL AUTO_INCREMENT,
  `creator` VARCHAR(45) NOT NULL,
  `description` VARCHAR(2048) NULL,
  `supervisor` VARCHAR(45) NOT NULL,
  `created_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `planed_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `executor` VARCHAR(45) NOT NULL,
  PRIMARY KEY (`id`))
ENGINE = InnoDB

以上为change的建表语句.

insert into change (creator, description, supervisor, executor) values (‘1111‘, ‘1‘, ‘111‘, ‘111‘);

执行以上insert操作时,报SQL执行错误 #1064错误.
误以为时sql语句书写错误,检查良久之后确认无误.
突然联想到change可能是mysql保留字,网上搜索后验证猜想.
因此,对change保留字添加反引号解决.

insert into `change` (creator, description, supervisor, executor) values (‘1111‘, ‘1‘, ‘111‘, ‘111‘);

SQL执行错误#1064---保留字错误

标签:添加   exec   ane   nod   class   creat   执行   保留   ble   

人气教程排行