pl/sql 存储结构

 1.语法

  create or replace procedure '存储过程名称'(
  参数1 数据类型,
  参数2 数据类型)
as
begin
  update auths set salary=p_authssalary where author_code=参数1;
  commit;
end updateauths;

posted @ 2012-04-17 16:27  尘中世界  阅读(85)  评论(0编辑  收藏  举报