Lourt: MYSQL - Update und Where selben value

Beitrag lesen

Table A
+--------+-----------+
|   ID   |   VALUE   |
|    1   |     3     |
|    2   |     4     |
|    3   |     4     |
|    4   |     7     |
|    5   |     7     |
+--------+-----------+

UPDATE A  
SET VALUE=99  
WHERE VALUE=7

Das geht ja leider nicht:
Currently, you cannot update a table and select from the same table in a subquery

Aber wie macht man das dann?

Danke für Tipps.