gpt4 book ai didi

python - 如何在python中增加查询值?

转载 作者:行者123 更新时间:2023-12-04 10:41:54 24 4
gpt4 key购买 nike

self.mycursor = self.mydb.cursor()
self.sql1 = "UPDATE counter SET count = %s WHERE id = %s"
self.val1 = (str(int('count' + 1)), '1')
self.mycursor.execute(self.sql1, self.val1)
self.mydb.commit()

在这部分代码中,我想增加查询值

最佳答案

如果您想为给定的 id 将计数器加 1,您可以执行以下操作:

self.sql1 = "UPDATE counter SET count = count + 1 WHERE id = %s"
self.val1 = (1)
self.mycursor.execute(self.sql1, self.val1)

关于python - 如何在python中增加查询值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59896641/

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