如何在MySQL中调试“你的SQL语法中有错误”错误?

时间:2016-04-26 18:54:58

标签: mysql

  

SQL错误:您的SQL语法中有错误;检查与MySQL服务器版本对应的手册,以便在第1行的')'附近使用正确的语法

请帮助我解决它

create table post
(
id bigint(20) primary key,
content varchar(255) not null,
date datetime not null,
type_id bigint(20) not null,
user_id bigint(20) not null,
foreign key (type_id) references post_type(id),
foreign key (user_id) references user(id),
);

1 个答案:

答案 0 :(得分:-1)

删除最后一个逗号

create table post
(
    id bigint(20) primary key,
    content varchar(255) not null,
    date datetime not null,
    type_id bigint(20) not null,
    user_id bigint(20) not null,
    foreign key (type_id) references post_type(id),
    foreign key (user_id) references user(id)
);