这是我的代码
cursor.execute("UPDATE Blockchain_address SET money_of_address = ? WHERE address = temp_2", (temp_amount,))
它返回错误
sqlite3.OperationalError: no such column: temp_2
确实没有列 temp_2 但 temp_2 是一个变量。我想在我的数据库中查看money_of_address 列的值为temp_2 的位置。我应该怎么办?