oracle取字符串长度的函数length()和hengthb()
Posted 疯子加天才
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle取字符串长度的函数length()和hengthb()相关的知识,希望对你有一定的参考价值。
lengthb(string)计算string所占的字节长度 :返回字符串的长度,单位是字节
length(string)计算string所占的字符长度 :返回字符串的长度,单位是字符
对于单字节字符,LENGTHB和LENGTH是一样的.
如可以用length(‘string’)=lengthb(‘string’)判断字符串是否含有中文。
转自网络:
http://topic.csdn.net/t/20040630/16/3135181.html
http://space.itpub.net/?uid-231499-action-viewspace-itemid-63770
select length(‘我‘) from dual --返回1
select lengthb(‘我‘) from dual --返回2
select length(‘AB‘) from dual --返回2
select lengthb(‘AB‘) from dual --返回2
以上是关于oracle取字符串长度的函数length()和hengthb()的主要内容,如果未能解决你的问题,请参考以下文章