我有代码:
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
的记录已在表中更新,但是我想更新表中的所有记录,我该怎么做?
答案 0 :(得分:0)
只需删除where
子句:
self.env.cr.execute('update product_rate set rate=%s', (rate,))