Postgresql函数示例

这是一个用于更新`table_district`表中各个记录的`id_full_path`、`code_full_path`和`name_full_path`字段的PL/pgSQL函数。首先清空这些字段,然后逐级根据pid构建完整的路径,确保每个记录的路径正确无遗漏。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值