码迷,mamicode.com
首页 > 数据库 > 详细

PL/SQL-01

时间:2015-04-22 02:06:11      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:function   number   replace   create   return   

create or replace function change_sal (p_job varchar2)

return number 

as v_result number(7,2) ;

begin 

if  p_job = ‘CLERK‘ then v_result := 0.1 ;

elsif p_job = ‘SALESMAN‘ then v_result := 0.15 ;

elsif p_job = ‘MANAGER‘ then v_result := 0.2 ;

end if;

return v_result ;

end;




declare

result number(7,2) := 0 ;

begin

result := change_sal(‘CLERK‘);

DBMS_OUTPUT.PUTON(‘0‘||result);

end;



本文出自 “不灭的信仰” 博客,谢绝转载!

PL/SQL-01

标签:function   number   replace   create   return   

原文地址:http://wyhstar460.blog.51cto.com/2972581/1636705

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!