字段更新后如何在python-mysql中获取更新的字段

时间:2018-09-11 11:28:13

标签: python mysql python-3.x mysql-python



我使用以下命令在python的mysql表中增加了一个字段。

 cursor,db_connection=await database_connection()
 await cursor.execute("update topics set last_voice_id=last_voice_id+1 where topic_id='%s'" % topic_id)
 await db_connection.commit()

我想在更新后获取字段last_voice_id。我该怎么办?

0 个答案:

没有答案