欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

sql 游标的使用—游标FOR循环小例子

程序员文章站 2022-07-03 20:32:31
例子: 显示emp表所有雇员名及其工资: 复制代码 代码如下:declarecursor emp_cursor is select ename,sal from emp...

例子: 显示emp表所有雇员名及其工资:

复制代码 代码如下:

declare
cursor emp_cursor is select ename,sal from emp ;
begin
for emp_record in emp_cursor loop
dbms_output.put_line('姓名: '||emp_record.ename||' , 工资: '||emp_record.sal);
end loop;
end ;
/

anonymous block completed
姓名: smith , 工资: 880
姓名: allen , 工资: 1600
姓名: ward , 工资: 1250
姓名: jones , 工资: 3272.5
姓名: martin , 工资: 1250
姓名: blake , 工资: 2850
姓名: clark , 工资: 2450
姓名: scott , 工资: 2000
姓名: king , 工资: 5000
姓名: turner , 工资: 1500
姓名: adams , 工资: 1210
姓名: james , 工资: 950
姓名: ford , 工资: 3300
姓名: miller , 工资: 2100