我正在使用Python和MySQLdb,我有一个表格显示如下,但每次尝试插入表格时都会收到错误消息。
INSERT INTO评论(entry,created_time,user_id,branch_id,title)VALUES('分支将导致使用ciyrt','2011-09-20 00:24:24',1,1','oogletivers “)
CREATE TABLE reviews
(
id int(9) unsigned not null primary key auto_increment,
entry text not null ,
created_time timestamp not null,
user_id tinyint unsigned not null references users(id),
branch_id tinyint unsigned not null references branches( id),
title varchar(255),
FULLTEXT(title, entry)
)
mysql_exceptions.ProgrammingError:(1064,“你的SQL语法有错误;请查看与你的MySQL服务器版本对应的手册,以便在'1','oogletivers'附近使用正确的语法')'在第1行”
答案 0 :(得分:1)
你有两个逗号,它们之间没有任何内容。删除一个。