python 操作MySQL避坑1064

Posted 老鲜肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 操作MySQL避坑1064相关的知识,希望对你有一定的参考价值。

pymysql.err.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 xxxxx)

  pymysql操作数据库出现这种错误多半是语法问题,比如当我们使用如下语法是就会出现此错误

conn.execute("SELECT * FROM foo WHERE bar = %s AND baz = %s" % (param1, param2))

  正确的写法如下

c.execute("SELECT * FROM foo WHERE bar = %s AND baz = %s", (param1, param2))

  

 

 

拓展:

python操作MySQL数据库

import pymysql
db = pymysql.connect(host=‘localhost‘, user=‘root‘, password=‘123456‘, port=3306, db=‘spiders‘,charset=‘utf8‘) cursor = db.cursor() 
sql = ‘select * from students;‘
cursor.execute(sql)
cursor.close()
db.close()

  

以上是关于python 操作MySQL避坑1064的主要内容,如果未能解决你的问题,请参考以下文章

关于MySQL的1064错误

Python操作mysql数据库出现pymysql.err.ProgrammingError: (1064, "You have an error in your SQL syntax; c

Python MySQL 错误 1064 插入日期时间字符串

Python MySQL executemany的使用

使用 python 创建 Mysql 数据库 - 不断收到 1064 错误(...在 '%s' 附近使用正确的语法)

Python调用Mysqldb完成MySql的CRUD操作