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