gpt4 book ai didi

python - 如何在mysqldb中使用in语句

转载 作者:行者123 更新时间:2023-12-01 06:02:09 27 4
gpt4 key购买 nike

似乎mysqldb没有明显的方法来使用in语句

execute('select * from test where id in(%s)','1,2,3')

将得到querysql="select * from test where id in ('1,2,3')"

这显然不是我想要的。现在我必须多次使用 execute 方法并将 fetchall 结果一起附加。

有没有更好的方法?

最佳答案

试试这个:

data = [1,2,3]  # stores the data
in_part = ','.join(['%s'] * len(data)) # prepares formatting string
execute('select * from test where id in(' + in_part + ')', data)

关于python - 如何在mysqldb中使用in语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9819680/

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