概述
复制代码 代码如下:
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();
最后
以上就是隐形魔镜为你收集整理的postgresql sql批量更新记录的全部内容,希望文章能够帮你解决postgresql sql批量更新记录所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复