pgsql游标批量插入数据,id基于最大值自增

CREATE OR REPLACE FUNCTION bach_save_config(c_code text,c_name text,c_type text,c_value text,c_business_type_name text,c_memo text)
RETURNS refcursor AS
$BODY$
declare
c_org_id int8;
orgid_list refcursor;
c_id_plus int8 DEFAULT 1 ;
isexist int8;
BEGIN
OPEN orgid_list for EXECUTE 'select his_org_id from "comm"."hospital" group by his_org_id';
loop
fetch orgid_list into c_org_id;
if found then

pgsql游标批量插入数据,id基于最大值自增最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/10260.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>