postgresql sql批量更新记录_数据库其他教程-查字典教程网
postgresql sql批量更新记录
postgresql sql批量更新记录
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:CREATEFUNCTIONupdateTchrNm()RETURNSvoidAS$body$DECLARErownumi...

复制代码 代码如下:

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();

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新数据库其他学习
    热门数据库其他学习
    编程开发子分类