求 oracle 从一个表中取出数据作为参数 修改另一个表的sql语句
求 oracle 从一个表中取出数据作为参数 修改另一个表的sql语句
日期:2012-10-29 14:14:24 人气:3
使用语句块、游标:
1、将数据表作以游标形式取数据;
2、将取出数据经过逻辑判断后,执行UPDATE语句。
declare
v_1 varchar2(100);
curor v_cur is
select a_1 from A_table where ....; ----从一个表取数据
begin
open v_cur
fetch v_cur into v_1;
exit when v_cur %notfound;
if ... then ----判断是否需