微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

postgresql函数示例

CREATE OR REPLACE FUNCTION "public"."p_update_dist_full_path"()
  RETURNS "pg_catalog"."void" AS $BODY$ 
DECLARE
     c_record record;
     c_temp record;
     exesql varchar;
     c_code varchar;
     BEGIN
      update table_district set id_full_path='',code_full_path='',name_full_path='';
      update table_district set id_full_path=id,code_full_path=code,name_full_path=name where id='1';
      for c_record in
       select id,pid,n from table_district _r where n>=0 and id !=1 order by n desc 
      loop
       select id::varchar,code,name INTO c_temp from table_district where id= c_record.pid;
       if c_temp.code = '' or c_temp.code is null THEN
          update table_district set id_full_path=(CASE id_full_path WHEN '' then c_temp.id else concat(id_full_path,',',c_temp.id) END),name_full_path=concat(name_full_path,'/',c_temp.name) where id = c_record.id;
       else
          update table_district set id_full_path=(CASE id_full_path WHEN '' then c_temp.id else concat(id_full_path,',',c_temp.id) END),code_full_path=concat(code_full_path,'/',c_temp.code),name_full_path=concat(name_full_path,'/',c_temp.name) where id = c_record.id;
        end if;
      end loop;
      END; 
$BODY$
  LANGUAGE plpgsql VOLATILE
  COST 100

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐