使用Python将列值更新为postgres

时间:2016-01-05 11:59:59

标签: python postgresql

我想使用python从列表值更新种类表的列值。我将列表转换为元组:

tu=[(3,), (4,), (0,), (0,), (4,), (4,), (2,), (0,), (0,), (0,), (3,), (0,), (0,), (4,), (2,), (0,), (2,), (0,), (0,), (0,), (0,), (0,), (0,), (1,)]

以下是我的数据库表

enter image description here

我想更新来自speciesID = 1

的值

我的python代码是:

cur.executemany('update species set listvalues = %s ', tu)

我没有收到任何错误,但是值没有更新。请帮忙!

0 个答案:

没有答案