1. 程式人生 > >ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that c

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that c

1。ERROR 1064 (42000): 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 ')
engine=InnoDB
default character set=utf8 COMMENT '使用者和部門關係表'' at line 15
 

 

2.將建立的資料表的最後一個欄位後的逗號去掉即可。

eg:

create table `t_mis_user_role`(
`id` int(11) unsigned not null auto_increment comment '使用者與角色關係id',
`userid` int(11) unsigned not null comment '使用者id',
`roleid` int(11) unsigned not null comment '角色id',
`createtime` timestamp default current_timestamp comment '建立時間',
`updatetime` timestamp default current_timestamp on update current_timestamp null comment '更新時間',
primary key (`id`),
foreign key (`userid`) references `t_mis_user`(`id`),
foreign key (`roleid`) references `t_mis_role`(`id`),


)
engine=InnoDB
default character set=utf8 COMMENT '使用者和角色關係表';

改為:create table `t_mis_user_role`(
`id` int(11) unsigned not null auto_increment comment '使用者與角色關係id',
`userid` int(11) unsigned not null comment '使用者id',
`roleid` int(11) unsigned not null comment '角色id',
`createtime` timestamp default current_timestamp comment '建立時間',
`updatetime` timestamp default current_timestamp on update current_timestamp null comment '更新時間',
primary key (`id`),
foreign key (`userid`) references `t_mis_user`(`id`),
foreign key (`roleid`) references `t_mis_role`(`id`)


)
engine=InnoDB
default character set=utf8 COMMENT '使用者和角色關係表';