Oracle 数据 使用游标
程序员文章站
2023-11-20 21:49:22
复制代码 代码如下:create or replace procedure proceudre_name as begin declare spara varchar(50...
复制代码 代码如下:
create or replace
procedure proceudre_name as
begin
declare
spara varchar(50);
spara2 varchar(50);
cursor c_cursor is select id,name from temp_table;
begin
open c_cursor;
loop
fetch c_cursor into spara, spara2;
exit when c_cursor%notfound;
begin
--just do what you want.
end;
end loop;
close c_cursor;
end;
end;
下一篇: SQLServer 中.与::的区别
推荐阅读
-
数据从MySQL迁移到Oracle 需要注意什么
-
使用JDBC在MySQL数据库中如何快速批量插入数据
-
数据库索引(Oracle和Mysql)学习总结
-
使用JDBC从数据库中查询数据的方法
-
Myeclipse链接Oracle等数据库时lo exception: The Network Adapter could not establish the connection
-
Hibernate中使用HQLQuery查询全部数据和部分数据的方法实例
-
C# Oracle数据库操作类实例详解
-
asp.net中使用 Repeater控件拖拽实现排序并同步数据库字段排序
-
PHP5中使用mysqli的prepare操作数据库的介绍
-
在ASP.NET 2.0中操作数据之四:使用ObjectDataSource展现数据