oracle的显式游标
发表于:2025-11-07 作者:千家信息网编辑
千家信息网最后更新 2025年11月07日,declare cursor user_cur is select * from my_user; user_row my_user%rowtype; begin open us
千家信息网最后更新 2025年11月07日oracle的显式游标
declare cursor user_cur is select * from my_user; user_row my_user%rowtype; begin open user_cur; loop fetch user_cur into user_row; exit when user_cur%notfound; dbms_output.put_line(user_row.user_id||'----'||user_row.name); end loop; close user_cur; end;
declare cursor user_cur is select * from my_user; row_user my_user%rowtype; begin open user_cur; loop fetch user_cur into row_user; exit when user_cur%notfound; dbms_output.put_line(row_user.user_id||'----'||row_user.name||'----'||row_user.age); end loop; close user_cur;end;
declare cursor row_user is select * from my_user; type my_user_tab is table of my_user%rowtype; /* 定义和表my_user行对象一致的集合类型cur_row_user, 用于存放批量得到的数据 */ cur_row_user my_user_tab; begin open row_user; loop /*从结果集中提取数据,每次提取两行*/ fetch row_user bulk collect into cur_row_user limit 2; /*遍历集合cur_row_user中的数据*/ for i in 1..cur_row_user.count loop dbms_output.put_line(cur_row_user(i).user_id||'----'||cur_row_user(i).name||'----'||cur_row_user(i).age); end loop; exit when row_user%notfound; end loop; close row_user; end;
declare cursor user_cur is select * from my_user; type my_user_tab is table of my_user%rowtype; /* 定义和表my_user行对象一致的集合类型cur_user_cur, 用于存放批量得到的数据 */ cur_user_cur my_user_tab; begin open user_cur; loop /*从结果集中提取数据,每次提取两行*/ fetch user_cur bulk collect into cur_user_cur limit 2; /*遍历集合cur_user_cur中的数据*/ for i in 1..cur_user_cur.count loop dbms_output.put_line(cur_user_cur(i).user_id||'----'||cur_user_cur(i).name||'----'||cur_user_cur(i).age); end loop; exit when user_cur%notfound; end loop; close user_cur; end;
declare cursor user_cur is select * from my_user; begin for cdr in user_cur loop dbms_output.put_line(cdr.user_id||'----'||cdr.name||'----'||cdr.age); end loop; end; /*cursor for loop 不需要特别的申明变量,它可以提取出行对象类型数据*/
declare cursor user_cur is select * from my_user; cdr my_user%rowtype; begin if user_cur%isopen then fetch user_cur into cdr; dbms_output.put_line(cdr.user_id||'----'||cdr.name||'----'||cdr.age); else dbms_output.put_line('游标没有打开'); end if; end;declare cursor user_cur is select * from my_user; cdr my_user%rowtype; begin open user_cur; if user_cur%isopen then loop fetch user_cur into cdr; exit when user_cur%notfound; dbms_output.put_line(cdr.user_id||'----'||cdr.name||'----'||cdr.age); end loop; else dbms_output.put_line('游标没有打开'); end if; end;declare cursor user_cur is select * from my_user; cdr my_user%rowtype; begin open user_cur; loop fetch user_cur into cdr; if user_cur%found then dbms_output.put_line(cdr.user_id||'----'||cdr.name||'----'||cdr.age); else dbms_output.put_line('游标没有打开'); exit; end if; end loop; end;declare /*这里的取值写在declare和begin中都可以*/ v_user_id my_user.user_id%type:='&v_user_id'; /*这里的v_user_id的类型写number和my_user.user_id%type都可以*/ cursor c_my_user(v_user_id my_user.user_id%type) is select * from my_user where user_id=v_user_id; cdr my_user%rowtype; begin open c_my_user(v_user_id); loop fetch c_my_user into cdr; if c_my_user%found then dbms_output.put_line(cdr.user_id||'----'||cdr.name||'----'||cdr.age); else dbms_output.put_line('游标没有打开'); exit; end if; end loop; end;
数据
游标
类型
对象
一致
结果
变量
出行
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
网络安全审查办法适用行业
富士通 软件开发方法论
数学分析在软件开发中的应用
软件开发所需要的硬件设备
软件开发项目预算编制
数据库查重复
学术期刊数据库定义
eac服务器
福建软件开发商城定制开发
spring数据库封装
软件开发一定要连接外网嘛
贝克网络技术有限公司
u8数据库解压
科大中天数据库密码
网络技术应用网10日
计算机软件开发 语言
测服务器功能
河北ip服务器
nb-iot管理服务器ms
湖北丝路贵人网络技术有限
辽宁智慧社区软件开发公司
百家号网络安全法审核
华为服务器湖北指定代理商
软件软件开发公司简介
郴州市安卓软件开发工资
如何去除数据库的加密功能
我的世界网易服务器招聘
作为大学生如何看待网络安全
自主可控软件开发报价表
命令行中怎么新建数据库