0

我在使用 python 在 mysqldb 中创建表时遇到问题,如下所示:

cursor.execute("CREATE TABLE IF NOT EXISTS %s ( tweetId VARCHAR(100) NOT NULL, tweet VARCHAR(180) NOT NULL, PRIMARY KEY(tweetId) )",('Tutulive')) .

我收到此错误:

_mysql_exceptions.ProgrammingError: (1064, "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 ''Tutulive' ( tweetId VARCHAR(100) NOT NULL, tweet VARCHAR(180) NOT NULL, PRIMARY' at line 1")
4

1 回答 1

0

SQL 参数不应用于元数据。自己清理值并将其正常插入字符串。

于 2013-05-25T04:38:19.230 回答