gpt4 book ai didi

python - 使用 .format() 时出现 psycopg2 编程错误

转载 作者:行者123 更新时间:2023-11-29 12:08:02 24 4
gpt4 key购买 nike

我不确定这里到底发生了什么,但它可能与 python 中的格式有关。 运行它会导致错误。

x = '00000201000012EB'
sql = """ SELECT * FROM table WHERE id = {} """.format(x)
conn.execute(sql)

我收到一条错误消息:“EB”附近出现语法错误

但是当我运行这样的命令时:

sql = """ SELECT * FROM table WHERE id = '00000201000012EB' """
conn.execute(sql)

它工作正常。

我格式化这条sql语句的方式有问题吗?

最佳答案

将变量用作execute() 的参数:

cur.execute(""" SELECT * FROM my_table WHERE id = %s """, (x,))

如果您确定要使用format(),您应该在占位符周围添加单引号:

sql = """ SELECT * FROM my_table WHERE id = '{}' """.format(x)

关于python - 使用 .format() 时出现 psycopg2 编程错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51447041/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com