I'm currently trying to update an amount.
update Stipend
set Amount = Amount * 1.4
where SubjectId IN ('10111','20022','30033') ;
The update is able to run correctly but the only thing that does not get updated is SubjectId '10111', as the amount stays the same.
Before:
After:

