我使用以下命令在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
。我该怎么办?