I'm looking for something like the following in MySQL:
SELECT Field1
FROM MyTable
AFTER UPDATE
SET Field2 = 'myvalueX'
WHERE Field3 = 'myvalueY';
The above hypothetical statement returns the values for Field1 for each row that was affected by the update part of the statement.
Does such a statement exist in MySQL?