4.1、开始一个事务

  1. postgres=# begin;
  2. BEGIN

或者

  1. postgres=# begin TRANSACTION ;
  2. BEGIN

也可以定义事务的级别

  1. postgres=# begin transaction isolation level read committed ;
  2. BEGIN