gpt4 book ai didi

python - 如何使用 python 更新列表中的值的 sqlite 表?

转载 作者:行者123 更新时间:2023-11-28 23:01:49 25 4
gpt4 key购买 nike

我想在包含多行的 sqlite 上更新表

tablenew  
id status
a old
b ask
c old
d old

等...

list = ['a', 'b', 'c']

cur.execute("update tablenew set status =? where id = ?", ('new',list))

如何在 python 中执行此操作?

最佳答案

使用 IN 运算符:

cur.execute("update tablenew set status = ? where id IN ?", ('new', list))

关于python - 如何使用 python 更新列表中的值的 sqlite 表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10546309/

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