码迷,mamicode.com
首页 > 数据库 > 详细

postgresql新建插入存储过程

时间:2019-10-28 00:41:31      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:pos   into   loop   oop   sign   存储   postgre   插入   for   

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新建插入存储过程

标签:pos   into   loop   oop   sign   存储   postgre   插入   for   

原文地址:https://www.cnblogs.com/mobies/p/11750038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!