Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLINSERT UPDATE DELETESingle-choice MCQ

A table `accounts(id, balance)` has a row id=1, balance=100. After running this, what is balance for id=1?

UPDATE accounts SET balance = balance + 50 WHERE id = 1;