博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Postgresql游标CURSOR
阅读量:5842 次
发布时间:2019-06-18

本文共 465 字,大约阅读时间需要 1 分钟。

hot3.png

CREATE OR REPLACE FUNCTION cursor_demo()    RETURNS refcursor AS  $BODY$  DECLARE cur CURSOR FOR select id , totalspace from aaa where discardflag = '0';	v_id int;	v_totalspace int;begin  open cur;  FETCH  cur into v_id,v_totalspace ;  while found loop    insert into a values (v_id,v_totalspace);	  FETCH next from  cur into v_id,v_totalspace ;  end loop;  RETURN cur ;  close cur;END;$BODY$    LANGUAGE plpgsql;

 

转载于:https://my.oschina.net/wangchuandui/blog/820530

你可能感兴趣的文章
Teleport安装与配置
查看>>
nginx hello world
查看>>
美国人怎么拔网线----DMCA入门
查看>>
Android混淆、反编译以及反破解的简单回顾
查看>>
JavaWeb无热部署扩展
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
到底什么成就了今天的人工智能?(上)
查看>>
深入浅出解读 Java 虚拟机的差别测试技术
查看>>
对于从事网络工作的我
查看>>
Logstalgia
查看>>
matlab图形着色
查看>>
window-运行perl脚本(搭建health-check环境)
查看>>
redis_3.0.7_sds.c_sdsIncrLen()
查看>>
我的友情链接
查看>>
iOS开发之视频压缩
查看>>
IOS学习笔记(六)之UISlider的概念和使用方法
查看>>
我的友情链接
查看>>
第九章 前七章总结考试答案
查看>>
Elasticsearch索引别名、Filtered索引别名、Template
查看>>