1. 程式人生 > >Oracle 隱式遊標SQL

Oracle 隱式遊標SQL

-- 根據使用者輸入的員工號,更新指定員工的工資,比如工資漲100
declare
begin
  update empnew set sal = sal + 100 where empno = &eno;
  if sql%found then
    dbms_output.put_line('成功修改員工工資');
    commit;
  else
     dbms_output.put_line('修改員工工資失敗');
     rollback;
  end if;
end;

select * from empnew where empno = 7902;