0

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:

enter image description here

After:

enter image description here

1 Answer 1

1

You have a typo: in your query you have 10111, but the SUBJECTID you want to update is 10011.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.