postgresql新建插入存储过程
Posted 牧阳人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql新建插入存储过程相关的知识,希望对你有一定的参考价值。
begin
declare i int;
i :=1;
for i in 1..10 loop
insert into table_name values (i,now());
i=i+1;
end loop;
end;
补充:
字符串变整数
ONVERT(‘123‘,SIGNED);
以上是关于postgresql新建插入存储过程的主要内容,如果未能解决你的问题,请参考以下文章