Databases by default do not prevent us from all concurrency issues. Let’s understand more issues and their solutions. — In the last blog, we looked at DirtyRead, DirtyWrite and Read Skew concurrency problems and learnt how Read Committed and the Snapshot Isolation levels solve them. Let’s learn about other concurrency problems that can still occur: Lost Updates If two transactions perform “Read, Modify and Write” concurrently, the change made by one…