Home >Database >Mysql Tutorial >Oracle SQL的cursor理解

Oracle SQL的cursor理解

WBOY
WBOYOriginal
2016-06-07 17:22:201287browse

在PL/SQL开发中,会涉及到很多cursor的处理操作,这个cursor通常被翻译成游标。游标又分成显式和隐式两类。使用updatedelete ins

隐式游标中大写的"SQL"标识,,如SQL%ROWCOUNT表示隐式游标有几行记录;显式游标由开发者自定义,也可以使用如C1%ROWCOUNT表示游标C1有几行记录。通常显式游标都是使用OPEN方式打开的。

使用显式定义的游标使用OPEN方式打开,它的使用方法如下例所示:

在SQLPUS中执行,得到如下结果。

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn