How can I exclude reading rows that were selected in the first transaction when executing the second transaction in PostgreSQL?
I have "user" table with 3 columns. This table has 2 records with value user_name user_age user_address Kelvin 18 New York Thomas 21 Paris The first transaction BEGIN ; SELECT u from "user" u where u.user_age > 10 limit 1…