在用python 读取Mysql的数据时,出现
': (1054, "Unknown column 'DS' in 'where clause'")
的错误
原因是在传参的时候 直接写为
where product = {product}
没有加引号
image.png
如果把这个传参的加上引号,则可解决此问题:
where product = '{product}'
image.png
在用python 读取Mysql的数据时,出现
': (1054, "Unknown column 'DS' in 'where clause'")
的错误
原因是在传参的时候 直接写为
where product = {product}
没有加引号
如果把这个传参的加上引号,则可解决此问题:
where product = '{product}'
image.png
本文标题:python read_sql时sql语句中传参时出现Unkno
本文链接:https://www.haomeiwen.com/subject/utfxwktx.html
网友评论