Contents
BEGIN
A transaction command for starting a transaction block
BEGIN
is a transaction command for starting a transaction block. It is equivalent to the SQL standard START TRANSACTION
command.
BEGIN
has always been present in PostgreSQL.
Basic execution of BEGIN
:
postgres=# BEGIN ; BEGIN
References
- PostgreSQL documentation: BEGIN