pymysql.err.InternalError: (1054, “Unknown column ‘SCI201700.mdb_1’ in ‘where clause’”)`
原代码
sql = """select sci_id from %s where sci_id = %s""" % (MySQL_table_name, sci_id)
self.cursor.execute(sql)
更改后,解决bug
sql = """select sci_id from %s where sci_id = '%s'""" % (MySQL_table_name, sci_id)
self.cursor.execute(sql)
解释
sci_id = ‘%s’ 中的%s:
(MySQL_table_name, sci_id)中sci_id的类型是字符串,%s匹配该类型。
sci_id = ‘%s’中的’’(单引号):
“”“select sci_id from %s where sci_id = ‘%s’”""中的sci_id是字符串,需要通过单引号来进行第二次转义。不转义的话,有可能会被认为是int类型。
Refernce
https://www.cnblogs.com/a389678070/p/9722201.html
https://www.cnblogs.com/yanzhuping/p/11730991.html
本文解决了一个关于pymysql模块在执行SQL查询时出现的InternalError异常问题,详细阐述了如何正确处理字符串类型的参数,避免SQL语法错误。通过在SQL语句中使用正确的字符串标识符和参数格式化,成功解决了未知列的问题。
2500

被折叠的 条评论
为什么被折叠?



