我試圖從MySQL(total_points)中選擇一個值,然後添加到本地變量(new_points)並更新SAME查詢中的total_points,是否有人知道這是否可能...MySQL在一個查詢中選擇並更新
我現在有,
cursor = database.cursor()
cursor.execute("""SELECT total_points FROM g_ent WHERE e_id =%s AND user =%s;
UPDATE total_points = (total_points + %s)"""
,(e_id, user_name, new_points))
database.commit()
關於'UPDATE total_points =(total_points +%s)'這是哪個表?或者如果'total_points'是表格,那麼該字段是什麼? – reikyoushin 2013-05-02 17:23:34