postgres循环sql

Posted 大老虎打老虎

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgres循环sql相关的知识,希望对你有一定的参考价值。

CREATE OR replace function loop_addDevice(i integer) RETURNS integer as
$$
    declare 
    count alias for $1;
    all_cam int;
    num_cam int;
    begin
    all_cam :=10;
    while all_cam>0  Loop
      insert into ...
      all_cam:=all_cam-1;
  end loop; return 0; end; $$ LANGUAGE plpgsql; --连接到wsw \c wsw --先清空表 truncate encodedevice; truncate element; truncate area; truncate camera; select loop_addDevice(5000);

 






以上是关于postgres循环sql的主要内容,如果未能解决你的问题,请参考以下文章

带有循环的 Postgres SQL 脚本

ForEach 循环中的异步/等待节点 Postgres 查询

如何使用 SQL for 循环将行插入数据库?

常用python日期日志获取内容循环的代码片段

在 postgres 中恢复 sql 文件时退出代码 1

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销