云数据库 GAUSSDB-RELEASE SAVEPOINT:示例

时间:2024-01-23 20:08:53

示例

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--创建一个新表。
postgres=# CREATE TABLE tpcds.table1(a int);

--开启事务。
postgres=# START TRANSACTION;

--插入数据。
postgres=# INSERT INTO tpcds.table1 VALUES (3);

--建立保存点。
postgres=# SAVEPOINT my_savepoint;

--插入数据。
postgres=# INSERT INTO tpcds.table1 VALUES (4);

--删除保存点。
postgres=# RELEASE SAVEPOINT my_savepoint;

--提交事务。
postgres=# COMMIT;

--查询表的内容,会同时看到3和4。
postgres=# SELECT * FROM tpcds.table1;

--删除表。
postgres=# DROP TABLE tpcds.table1;
support.huaweicloud.com/devg-v1-gaussdb/gaussdb_devg_0626.html