如何更新表所有行中的列?

时间:2018-10-27 19:53:43

标签: python sql postgresql sql-update

我有代码:

def show_dolar_today(self):

    rate = self.get_dolar_today()
    self.env.cr.execute('update product_rate set rate=%s where id=%s', (rate,1))

具有id = 1的记录已在表中更新,但是我想更新表中的所有记录,我该怎么做?

1 个答案:

答案 0 :(得分:0)

只需删除where子句:

self.env.cr.execute('update product_rate set rate=%s', (rate,))