Oracle Length 和 Lengthb 函数说明

WBOY
发布: 2016-06-07 17:05:58
原创
1423 人浏览过

一.官网的说明 http://download.Oracle.com/docs/cd/E11882_01/server.112/e26088/functions088.htm#SQLRF00658 Purpose The LEN

一.官网的说明

.com/docs/cd/E11882_01/server.112/e26088/functions088.htm#SQLRF00658

Purpose

The LENGTH functionsreturn the length of char. LENGTH calculates length usingcharacters as defined by the input character set. 

     --返回以字符为单位的长度.

LENGTHB usesbytes instead of characters. 

     --返回以字节为单位的长度.

LENGTHC usesUnicode complete characters. 

     --返回以Unicode完全字符为单位的长度.

LENGTH2 usesUCS2 code points. 

     --返回以UCS2代码点为单位的长度.

LENGTH4 usesUCS4 code points.

    --返回以UCS4代码点为单位的长度.

 

char can beany of the data types char, varchar2, nchar, nvarchar2, clob,or nclob.

The exceptionsare LENGTHC, LENGTH2, and LENGTH4, which do not allow char tobe a CLOB or NCLOB. The return value is of data type NUMBER.If char has data type CHAR, then the length includes all trailingblanks. If char is null, then this function returns null.

 

Restriction on LENGTHB (Lengthb函数的限制)

The LENGTHB functionis supported for single-byte LOBs only. It cannot be used with CLOB and NCLOB datain a multibyte character set.

 

Examples

The followingexample uses the LENGTH function using a single-byte databasecharacter set:

 

SELECT LENGTH('CANDIDE') "Length incharacters" FROM DUAL;

 

Length in characters

--------------------

7

 

The next example assumes a double-bytedatabase character set.

 

SELECT LENGTHB ('CANDIDE') "Length inbytes" FROM DUAL;

 

Length in bytes

---------------

14

 

二.示例说明

在不同的数据库,因为字符集的不同,LENGTHB得到的值可能会不一样。如ZHS16GBK采用两个byte位来定义一个汉字。而在UTF8,,采用3个byte。

 

SYS@anqing1(rac1)> SELECT USERENV('LANGUAGE') FROM DUAL;

 

USERENV('LANGUAGE')

----------------------------------------------------

AMERICAN_AMERICA.ZHS16GBK

 

 

SQL>select length('安庆') from dual;

2

SQL>select lengthb('安庆') from dual;

4

 

SQL>select length('AnQing') from dual;

6

SQL>select lengthb('AnQing') from dual;

6

通过这个示例,我们可以看出来,Length 和 Lengthb 函数的一个重要用处,就是用来判断记录值里是否有中文内容。

如果有中文,那么Length() != Lengthb()

如果没有中文,那么Length() == Lengthb()

Oracle Length 和 Lengthb 函数说明

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!