I have a line:
Update <Table> Set <Value> = @NewValue Where RecordID = @RecordID;
However, now I find myself needing to update another table with the change in this value. Obviously I could do a separate query to get the original, or I could save the original when I originally read it. The elegant answer would be to somehow return it, though.
(RecordID is unique, this won't return multiple values.)