Postgresql的pl/pgql使用操作–将多条执行语句作为一个事务

postgresql的pl/pgql用法–将多条执行语句作为一个事务

do $$ 
declare 
 v_id bigint; 
begin 
 --1.
 insert into r_test_a (name, value, unit, mode, uid, create_ts) 
 select 't_t','','',2,0, extract(epoch from now())::bigint 
 where not exists (select id from r_test_a where name = 't_t' and value = '' and unit = '' and uid =0);
 --2.
 select id into v_id from r_test_a where name = 't_t' and value = '' and unit = '' and uid = 0;
 --3.
 delete from r_test_b a where a.obj_id = 'xxx' and a.file_id = 'ooo' and a.id in (select id from r_test_a b where b.name = 't_t' and b.uid=0); 
 --4.
 insert into r_test_b (id, obj_id, file_id, create_ts) select v_id,'xxx','ooo', extract(epoch from now())::bigint ;
end 
$$;

补充:postgresql 的pl/pgsql 块结构 (在pgadmin查询工具中如何执行语句块)

本文我们学习pl/pgsql结构块,包括如何写结构块和执行结构块。

什么是结构块

pl/pgsql是结构块语言,因此,pl/pgsql函数或过程是通过结构块进行组织。完整结构块的语法如下:

[ <<label>> ]
[ declare
 declarations ]
begin
 statements;
 ...
end [ label ];

详细说明如下:

块有两部分组成:声明部分和主体部分。声明部分是可选的,而主体部分是必须的。块在end关键字后面使用分号(;)表示结束。

块可以有个可选的标签在开始和结尾处。如果你想在块主体中使用exit语句或限定块中声明的变量名称时,需要使用块标签。

主体部分是编写代码的地方,每条语句需要使用分号结束。

pl/pgsql 块结构示例

下面示例描述一个简单块结构,一般称为匿名块:

do $$
<<first_block>>
declare
 counter integer := 0;
begin
 counter := counter + 1;
 raise notice 'the current value of counter is %', counter;
end first_block $$;

运行结果:

notice: the current value of counter is 1 

从pgadmin中执行块,点击图示按钮:

注意do语句不属于块结构。它用于执行匿名块。postgresql 在9.0版本中引入do语句。

在声明部分定义变量counter并设置为0.

在主体部分,是counter值加1,通过raise notice语句输出其值。

first_block 标签仅为了演示需要,本例中没有啥意义。

** 什么是双 ($$) 符号?**

($$) 符号 是单引号(‘)的替代符号。开发pl/pgsql 时,无论是函数或过程,必须把主体部分放在一个字符串中。因此必须对主体部分的单引号进行转义表示:

do
'<<first_block>>
declare
 counter integer := 0;
begin 
 
 counter := counter + 1;
 raise notice ''the current value of counter is %'', counter;
 
end first_block';

使用($$) 符号可以避免引号问题。也可以在$之间使用标识,如之间使用标识,如之间使用标识,如function$ , procedureprocedureprocedure.

pl/pgsql 子结构块

pl/pgsql可以一个块在另一个块的主体中。一个块嵌入在另一个块中称为子块,包含子块的块称为外部块。

子块用于组织语句,这样大块能被分为更小和更多逻辑子块。子块的变量的名称可以与外部块变量名称同名,虽然这在实践中不建议。当在子块中声明一个与外部变量同名的变量,外部变量在子块中被隐藏。如果需要访问外部块的变量,可以使用块标签作为变量的限定符,如下面示例:

do $$ 
<<outer_block>>
declare
 counter integer := 0;
begin 
 counter := counter + 1;
 raise notice 'the current value of counter is %', counter;
 
 declare 
  counter integer := 0;
 begin 
  counter := counter + 10;
  raise notice 'the current value of counter in the subblock is %', counter;
  raise notice 'the current value of counter in the outer block is %', outer_block.counter;
 end;
 
 raise notice 'the current value of counter in the outer block is %', counter;

执行结果如下:

notice: the current value of counter is 1
notice: the current value of counter in the subblock is 10
notice: the current value of counter in the outer block is 1
notice: the current value of counter in the outer block is 1

首先,在外部块中声明变量counter。

接着在子块中也声明了一个同名变量。

在进入子块之前,变量的值为1。在子块中,我们给变量counter值加10,然后打印出来。注意,这个改变仅影响子块中counter变量。

然后,我们通过标签限定符引用外部变量:outer_block.counter

最后,我们打印外部块变量,其值保持不变。

总结

本文我们学习pl/pgsql块结构,通过do语句可以执行匿名块。

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。如有错误或未考虑完全的地方,望不吝赐教。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐