Concept Flow - UPDATE with RETURNING clause
Start UPDATE command
Find rows matching WHERE condition
Update specified columns
Collect updated rows
RETURNING clause outputs updated rows
End
The UPDATE command finds rows matching the condition, changes specified columns, then RETURNING outputs the updated rows.