标签:
1.进程是相当于一个后台运行,赋予一个值,他能给出相关的结果。
--创建一个过程 "给你一个员工号 你给我返回他的年薪"
create or replace procedure nianxin(eno in number, psal out number) --‘nianxin‘是进程的名字 eno输入数据 in 代表输入值 number 类型 psal输出数据
as ---进程之中不用 declare
csal emp.sal%type;
ccomm emp.comm%type;
begin
select sal ,comm into csal,ccomm from emp where empno=eno;
psal :=sal *12 + nvl( ccomm,0); --注意 nvl 的作用
end;
/
--------------运用进程
declare
psal number;
begin
nianxin(7566,psal); ------psal是返回值, 7566是赋予值
dbms_output.put_line(psal);
end;
/
标签:
原文地址:http://www.cnblogs.com/savepoint/p/5316323.html