oracle的case問題 |
尚未結案
|
narcysion
一般會員 發表:54 回覆:18 積分:14 註冊:2003-03-14 發送簡訊給我 |
|
Fishman
尊榮會員 發表:120 回覆:1949 積分:2163 註冊:2006-10-28 發送簡訊給我 |
Hi: 如果我沒有記錯,Oracle 中,並沒有 case 的指令,你可以去查一查 DECODE,但在此 Procedure 中建議你用
if statement1 action1 elsif statement2 action2 else action3 end if;此外,你的 Procedure 可以簡化為 create or replace procedure sp_test as v_fct integer; v_code varchar2; begin if v_fct <= 9 then v_code := '00' to_char(v_fct) elsif v_fct <= 99 then v_code := '0' to_char(v_fct) else v_fct <= 999 then v_code := to_char(v_fct) end if; end; 或 create or replace procedure sp_test as v_fct integer; v_code varchar2; begin v_code := to_char(v_fct,'fm000') end;-------------------------------- 小弟才疏學淺,若有謬誤請不吝指教 --------------------------------
------
Fishman |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |