gpt4 book ai didi

python - 如何从 python mysql 查询中转义 %

转载 作者:IT老高 更新时间:2023-10-28 20:21:53 26 4
gpt4 key购买 nike

如何在 python 中从 mysql 查询中转义 %。

例如

query = """SELECT DATE_FORMAT(date_time,'%Y-%m') AS dd
FROM some_table
WHERE some_col = %s
AND other_col = %s;"""

cur.execute(query, (pram1, pram2))

给我一​​个“ValueError:不支持的格式字符'Y'”异常。

如何让 mysqldb 忽略 %?在任何文档中都看不到这一点。

最佳答案

docs 建议使用文字转义。 :

Note that any literal percent signs in the query string passed to execute() must be escaped, i.e. %%.

关于python - 如何从 python mysql 查询中转义 %,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3037581/

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