oracle 之if..else用法

來源:互聯網
上載者:User

oracle條件分支用法

a.if...then

b.if...then... else

c.if...then... elsif.... else

執行個體 1

問題:編寫一個過程,可以輸入一個僱員名,如果該僱員的工資低於2000,就給該員工工資增加10%
create or replace procedure sp_pro6(spName varchar2) is v_sal emp_copy.sal%type;

begin

select sal into v_sal from emp_copy where ename=spName;

if v_sal<2000 then

updateemp_copy set sal=sal*1.1 where ename=spName;

end if;

end;

執行個體 2

問題:編寫一個過程,可以輸入一個僱員名,如果該僱員的補助不是0就在原來的基礎上增加100;如果補助為0就把補助設為200;

create or replace procedure sp_pro6(spName varchar2) is

v_comm emp_copy.comm%type;

begin

select comm into v_comm from emp_copy where ename=spName;

if v_comm<>0 then

updateemp_copy set comm=comm+100 where ename=spName;

else

updateemp_copy set comm=comm+200 where ename=spName;

end if;

end;

執行個體 3

多重條件分支
if
then
elsif – then.

問題:編寫一個過程,可以輸入一個僱員編號,如果該僱員的職位是PRESIDENT就

給他的工資增加1000,如果該僱員的職位是MANAGER就給他的工資增加500,其它

職位的僱員工資增加200。

create or replace procedure sp_pro6(spNo number) is

v_job emp_copy.job%type;

begin

select job into v_job from emp_copy where empno=spNo;

if v_job='PRESIDENT'
then

updateemp_copy set sal=sal+1000 where empno=spNo;

elsif v_job='MANAGER'
then

updateemp_copy set sal=sal+500 where empno=spNo;

else

updateemp_copy set sal=sal+200 where empno=spNo;

end if;

end;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.