postgresql sql批量更新记录
程序员文章站
2022-09-04 08:40:01
复制代码 代码如下: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();
上一篇: js 取消页面可以选中文字的功能方法
下一篇: 怎么不说话!好歹也吱一声