Oracle中是用case...when語句進行判斷

來源:互聯網
上載者:User

標籤:

使用case...when語句進行判斷,其文法格式如下:

 case<selector>

when<expression_1> then pl_sqlsentence_1;

when<expression_2> then pl_sqlsentence_2;

...

when<expression_n> then pl_sqlsentence_n;

[else plsql_sentence;]

end case;

具體例子如下:

declare  v_season int:=3; autoinfo varchar2(50);begin  case v_season     when 1 then       autoinfo :=v_season||‘季節包括1,2,3月份‘;      when 2 then       autoinfo :=v_season||‘季節包括4,5,6月份‘;      when 3 then       autoinfo :=v_season||‘季節包括7,8,9月份‘;    when 4 then       autoinfo :=v_season||‘季節包括10,11,12月份‘;  else    autoinfo :=v_season||‘季節不合法‘;  end case;    dbms_output.put_line(autoinfo);end;   

輸出結果:

3季節包括7,8,9月份

 

在使用case...when 時候,只需要寫一個case就ok,不可以寫多個,錯誤寫法如下:

declare  v_season int:=3; autoinfo varchar2(50);begin  case v_season     when 1 then       autoinfo :=v_season||‘季節包括1,2,3月份‘;   case v_season     when 2 then       autoinfo :=v_season||‘季節包括4,5,6月份‘;   case v_season     when 3 then       autoinfo :=v_season||‘季節包括7,8,9月份‘;  case v_season    when 4 then       autoinfo :=v_season||‘季節包括10,11,12月份‘;  else    autoinfo :=v_season||‘季節不合法‘;  end case;    dbms_output.put_line(autoinfo);end;   

如果這樣寫的話,文法是錯誤的,在運行pl/sql塊時候會出現錯誤。

Oracle中是用case...when語句進行判斷

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.