Oracle游标,Oracle中用游标更新字段值的面试题,数
数据库-mysql教程
wince 程序源码,ubuntu黑屏 物理机,爬虫管理系统平台,php专版,0533_seolzw
如下表 SQLgt; set pagesize 60; SQLgt; run; 1* select * from employee NAME SALARY ———- –html5页游源码,搭建云端vscode,ubuntu写一个程序,tomcat api中文,树莓派操作sqlite,插件式架构,学习前端开发框架外包,爬虫网什么意思,php调用参数,孝感seo价格,导航网站源码下载,网页怎么放滚动图片,个人贡献模板,服装商城小程序源码下载lzw
地方个人分类信息网站源码,ubuntu 获取ip命令,人耳朵里爬虫,腾讯广州php,hexo 搜索seolzw
如下表
在这个表如果SALARY列小于2500 就加20%。这个很简单,但是要用把游标用进去就要如下思考了:
先建个游标,,遍历这个表在这个条件的数据。
SQL> create or replace procedure emp_testis
v_name employee.name%type;
v_sal employee.salary%type;
cursor cursor_sal is
select name,salary from employee where salary<2500;beginopen cursor_sal ;loopfetch cursor_sal into v_name,v_sal;exit when cursor_sal%notfound;update employee set salary=salary*1.2 where name=v_name;end loop;close cursor_sal;end;/过程已创建。