欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

postgresql sql批量更新记录

程序员文章站 2022-05-01 20:14:39
复制代码 代码如下:create function updatetchrnm() returns void as $body$ declare rownum integer...
复制代码 代码如下:

create function updatetchrnm() returns void as
$body$
declare
rownum integer := 1;
begin
while rownum <= 1000 loop
    update t_tchr set tchr_nm = '田中愛子' || rownum, tchr_knm = 'タナカアイコ' || rownum, tchr_anm = 'tanaka' || rownum where tchr_cd = 'tchr' || (1000000 + rownum);
    rownum := rownum + 1;
end loop;
return;
end;

$body$ language 'plpgsql';
select updatetchrnm();