Concept Flow - Why UPDATE needs caution
Start UPDATE command
Check WHERE condition
Update row
Repeat for next row
End UPDATE
The UPDATE command checks each row against the WHERE condition. If true, it updates the row; if false, it skips. This repeats for all rows.