标签:pac 长度 href .net mil ring rom color http
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()
标签:pac 长度 href .net mil ring rom color http
原文地址:http://www.cnblogs.com/love540376/p/6707974.html