Oracle存储过程游标for循环怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle存储过程游标for循环怎么写相关的知识,希望对你有一定的参考价值。
举例回答:
案例:
--For 循环游标--(1)定义游标
--(2)定义游标变量
--(3)使用for循环来使用这个游标
declare
--类型定义
cursor c_job
is
select empno,ename,job,sal
from emp
where job=\'MANAGER\';
--定义一个游标变量v_cinfo c_emp%ROWTYPE ,该类型为游标c_emp中的一行数据类型
c_row c_job%rowtype;
begin
for c_row in c_job loop
dbms_output.put_line(c_row.empno||\'-\'||c_row.ename||\'-\'||c_row.job||\'-\'||c_row.sal);
end loop;
end; 参考技术A 一、不带参数的游标for循环
1
首先编写存储过程的整体结构,如下:
create or replace procedure test_proc is
v_date date; --变量定义
begin
select sysdate into v_date from dual;
end test_proc;
Oracle存储过程游标for循环怎么写
2
定义游标:
create or replace procedure test_proc is
v_date date; --定义变量
cursor cur is select * from ldcode; --定义游标
begin
select sysdate into v_date from dual;
end test_proc;
Oracle存储过程游标for循环怎么写
3
编写for循环:
create or replace procedure test_proc is
v_date date; --定义变量
cursor cur is select * from ldcode where rownum<10; --定义游标
begin
select sysdate into v_date from dual;
--游标for循环开始
for temp in cur loop --temp为临时变量名,自己任意起
Dbms_Output.put_line(temp.Code); --输出某个字段,使用"变量名.列名"即可。
end loop;
--游标for循环结束
end test_proc;
Oracle存储过程游标for循环怎么写
4
测试运行,点击【DBMS Output】标签页查看结果如下图:
Oracle存储过程游标for循环怎么写
END
二、带参数的游标for循环
定义带参数的游标:
cursor cur(v_codetype ldcode.Codetype%TYPE) is
select * from ldcode where codetype = v_codetype; --定义游标
定义游标格式:
cursor 游标名称(变量定义) is 查询语句;
注意:
where条件中的变量名v_codetype要与游标定义cur(v_codetype ldcode.Codetype%TYPE)中的一致。
Oracle存储过程游标for循环怎么写
编写for循环部分:
--游标for循环开始
for temp in cur('llmedfeetype') loop
--temp为临时变量名,自己任意起
--cur('llmedfeetype')为"游标名称(传入的变量)"
Dbms_Output.put_line(temp.Code); --输出某个字段,使用"变量名.列名"即可。
end loop;
--游标for循环结束
Oracle存储过程游标for循环怎么写
3
测试运行,点击【DBMS Output】标签页查看结果如下图:
Oracle存储过程游标for循环怎么写
oracle存储过程中循环for in是如何使用的
参考技术A1、首先编写存储过程的整体结构,如下图所示定义变量。
2、定义变量后定义游标,begin,select sysdate into v_date from dual,end test_proc。
3、然后编写for循环,游标for循环开始,然后为临时变量名,任意起,输出某个字段,使用变量名.列名即可,最后游标for循环结束。
4、测试运行,点击DBMS Output标签页查,如下图没有问题。
以上是关于Oracle存储过程游标for循环怎么写的主要内容,如果未能解决你的问题,请参考以下文章