oracle的NULL值現象

來源:互聯網
上載者:User

最近,寫oracle預存程序,和sql的不一樣啊,sql 中select 就可以返回結果集,而oracle呢,得用指標(遊標),寫慣了sql語句,有點不適應.昨天,寫好測試一預存程序,預存程序在開始時會對某個參數的長度進行判斷

 

Code
declare
test varchar2(20) :='';
begin
if length(test)=0 then
  語句一
else
  語句二
end if;
end;

當test賦值''時,在sql中LEN(@test)=0,而在oracle中這個條件總是走到語句二,難道oracle中,length(test)不為0?只好測試看看了

 

Code
declare
test varchar2(20) :='';
begin
dbms_output.put_line('s'||length(test)||'s');
dbms_output.put_line('s'||nvl(test,0)||'s');
end;

/*
運行結果:
ss
s0s
*/

 

結論:

根據測試,在oracle中,將參數賦值'' 與 null 全部視為 null,因為對oracle是剛接觸,可能有的地方得出的結論不正確,請大家指點啊.

 

相關文章

聯繫我們

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