Postgresql – postgres does a row or table locked by one operation can be accessed by another op in a single transaction
I am beginning to understand how transaction and locks work in databases. So in a very higher-level understanding: BEGIN -- txID: 1234 UPDATE tbl_1 SET field = value WHERE id IN (1); -- for simplicity -- Locks acquired on rows…