null與substr
C:\Users\123>sqlplus scott/system
SQL*Plus: Release 11.2.0.1.0 Production on Tue Jan 22 16:53:44 2013
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> create table t_substr(a varchar2(10));
Table created.
SQL> insert into t_substr values(null);
1 row created.
SQL> insert into t_substr values('zxy');
1 row created.
SQL> commit;
Commit complete.
SQL> select * from t_substr;
A
--------------------
--------------------
zxy
SQL> select substr(a,1,2) from t_substr;
SUBSTR(A,1,2)
----------------
----------------
zx
SQL> select substr(null,1,2) from dual;
S
-
SQL> select substr(null,1,2) from t_substr;
S
-
S
-
SQL> select substr(null,1,2) from t_substr;
S
-
小結:
1,如變數值為null,substr執行不會報錯,可以正常處理
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-753051/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- not null與check is not nullNull
- insert()與substr()函式函式
- 字元函式之Substr(chr,0,m)與Substr(chr,m)的區別字元函式
- mysql探究之null與not nullMySqlNull
- undefined與null與?. ??UndefinedNull
- MySQL案例-TIMESTAMP NOT NULL與NULLMySqlNull
- null與indexNullIndex
- NULL與索引Null索引
- NULL與排序Null排序
- JavaScript substr()JavaScript
- Substr FunctionFunction
- JavaScript 中substr與 substring 的區別JavaScript
- NULL 值與索引Null索引
- substr函式函式
- NULL 值與索引(二)Null索引
- Null 與 “” 的區別Null
- “NOT_IN”與“NULL”的邂逅Null
- js substr 與 substring 有什麼區別嗎JS
- substr擷取字串字串
- ((NULL) null).printNULL();((NULL) null).printnull();Null
- substr(),mb_substr()及mb_strcut的區別和用法
- JavaScript undefined與null區別JavaScriptUndefinedNull
- undefined與null的區別UndefinedNull
- count_sum_distinct與nullNull
- PHP字串替換substr_replace與str_replace函式PHP字串函式
- 索引與null(一):單列索引索引Null
- 索引與null(二):組合索引索引Null
- Object-C之(Null)與(Bool)ObjectNull
- Oracle空串與null的處理OracleNull
- IS NULL和IS NOT NULLNull
- PHP之mb_substr使用PHP
- oracle中substr() instr() 用法Oracle
- substr()和substring()區別
- instr、substr函式用法函式
- mysql中null與“空值”的坑MySqlNull
- python None與Null 的區別PythonNoneNull
- MySQL裡null與空值的辨析MySqlNull
- 【問題處理】“NOT IN”與“NULL”的邂逅Null