postgresql 匿名函数(单独执行代码段)

Posted jonney

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql 匿名函数(单独执行代码段)相关的知识,希望对你有一定的参考价值。

do LANGUAGE plpgsql
$$
declare
  top integer;
  row_org dbo.a_org_type%rowtype;
begin
  /* Insert real code here */
  select into row_org * from dbo.a_org_type order by id desc limit 1;
  top := row_org.id + 1;
  
  for idx in 1..5 loop
    insert into dbo.a_org_type(id, des) 
    values(top, shang hai  || top);
    
    top := top + 1;
  end loop;
  
end;
$$

 

以上是关于postgresql 匿名函数(单独执行代码段)的主要内容,如果未能解决你的问题,请参考以下文章

Go 匿名函数与闭包的使用

JavaScript中的匿名函数立即执行函数和闭包

立即执行函数—匿名函数

无法在 Greenplum 中使用 DO 执行匿名代码块

匿名函数lambda

匿名函数 postgresql 的返回值