Zieltabelle nicht aktualisierbar Fehler

Ich muss diese Abfrage ausführen:

UPDATE (
   SELECT r.* 
   FROM booked r 
   INNER JOIN (
      SELECT a.st_code as from_t
           , b.st_code as to_t 
      FROM `stops_at` a 
      CROSS JOIN `stops_at` b 
      WHERE (a.stop_no < b.stop_no) 
        and (a.train_no = b.train_no) 
        and (a.train_no = '11280')
      ) new 
   ON (r.st_from = new.from_t) 
     and (r.st_to = new.to_t)
     and r.date = '2013-04-16'
   ) temp 
SET temp.seat_ac = temp.seat_ac-5

aber bei der Ausführung gibt es einen Fehler:

# 1288-Die Zieltabellentemp des UPDATE kann nicht aktualisiert werden.

Irgendwelche Lösungen?

Antworten auf die Frage(1)

Ihre Antwort auf die Frage