PL/pgSQL 中 PL/SQL %NOTFOUND 的等价物是什么?
一切都在标题中。
我正在游标上循环,并且希望
EXIT WHEN curs%NOTFOUND
当没有更多行时, PostgreSQL 下的 %NOTFOUND 相当于什么?
编辑
或其他游标属性%ISOPEN、%EMPTY等...
Everything's in the title.
I am Looping on a cursor and would like to have the
EXIT WHEN curs%NOTFOUND
when there is no more row, what is the equivalent of %NOTFOUND under PostgreSQL ?
Edit
Or the other cursors attributes %ISOPEN, %EMPTY, etc...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在无法测试,但是如果您尝试一下会怎样?
查看章节标题 37.7.3.2。在此链接退出
http://www.postgresql.org/docs/8.2/static /plpgsql-control-structs.html
或
Can't test this right now but what if you try this?
Check out section title 37.7.3.2. EXIT at this link
http://www.postgresql.org/docs/8.2/static/plpgsql-control-structures.html
OR
FOUND 变量
隐式游标
使用显式游标
The FOUND variable
Implicit cursor
With an explicit cursor