Sobes.tech
Junior — Middle

What isolation level is used by default in PostgreSQL?

sobes.tech AI

Answer from AI

By default, PostgreSQL uses the transaction isolation level Read Committed. This means that each command within a transaction only sees data that was committed before the start of that command. Therefore, a transaction does not see uncommitted changes from other transactions but can see changes committed after the transaction itself has started.