SQL - Transactions and Data Integrity
Consider two transactions running concurrently on a table
Orders. Transaction 1 reads all rows where status = 'pending'. Transaction 2 inserts a new row with status = 'pending' and commits. If Transaction 1 repeats the read, what phenomenon might it observe?