Oracle存储过程游标for循环怎么写

 我来答
greystar_cn
2017-12-29 · 知道合伙人软件行家
greystar_cn
知道合伙人软件行家
采纳数:16407 获赞数:17260
本人主要从事.NET C#方向的技术开发工作,具有10多年的各类架构开发工作经验。

向TA提问 私信TA
展开全部
  • 首先编写存储过程的整体结构,如下:

    create or replace procedure test_proc is

    v_date date; --变量定义

    begin

    select sysdate into v_date from dual;

    end test_proc;

  • 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;

  • 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;

  • 4

    测试运行,点击【DBMS Output】标签页查看结果如下图:

    END

  • 二、带参数的游标for循环

  • 1

    定义带参数的游标:

    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)中的一致。

  • 2

    编写for循环部分:

    --游标for循环开始

    for temp in cur('llmedfeetype') loop

    --temp为临时变量名,自己任意起

    --cur('llmedfeetype')为"游标名称(传入的变量)"

    Dbms_Output.put_line(temp.Code); --输出某个字段,使用"变量名.列名"即可。

    end loop;

    --游标for循环结束

  • 3

    测试运行,点击【DBMS Output】标签页查看结果如下图:

折柳成萌
高粉答主

2017-12-11 · 繁杂信息太多,你要学会辨别
知道顶级答主
回答量:4.4万
采纳率:96%
帮助的人:5930万
展开全部
一、不带参数的游标for循环

1
首先编写存储过程的整体结构,如下:
create or replace procedure test_proc is
v_date date; --变量定义
begin
select sysdate into v_date from dual;
end test_proc;

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;

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;

4
测试运行,点击【DBMS Output】标签页查看结果如下图:

END
二、带参数的游标for循环

1
定义带参数的游标:
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)中的一致。

2
编写for循环部分:
--游标for循环开始
for temp in cur('llmedfeetype') loop
--temp为临时变量名,自己任意起
--cur('llmedfeetype')为"游标名称(传入的变量)"
Dbms_Output.put_line(temp.Code); --输出某个字段,使用"变量名.列名"即可。
end loop;
--游标for循环结束

3
测试运行,点击【DBMS Output
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2017-10-24
展开全部
一、不带参数的游标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循环怎么写
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式