美文网首页
python read_sql时sql语句中传参时出现Unkno

python read_sql时sql语句中传参时出现Unkno

作者: 丙吉 | 来源:发表于2020-11-27 11:05 被阅读0次

    在用python 读取Mysql的数据时,出现
    ': (1054, "Unknown column 'DS' in 'where clause'")
    的错误
    原因是在传参的时候 直接写为

    where product = {product} 
    

    没有加引号


    image.png

    如果把这个传参的加上引号,则可解决此问题:

     where product = '{product}' 
    
    image.png

    相关文章

      网友评论

          本文标题:python read_sql时sql语句中传参时出现Unkno

          本文链接:https://www.haomeiwen.com/subject/utfxwktx.html