Oracle字符串连接concat函数和符串长度length函数的使用
Oracle字符串连接concat()函数:
1、concat()字符串连接函数,concat只能连接两个字符,而“||”可以连接多个字符。
select concat('BT','_youth') from dual; -- 用concat连接多个字符时,需要嵌套 select concat(concat('aa','bb'),'cc') from dual; select 'aa'||'bb'||'cc' from dual
2、Oracle字符串长度length()函数:
length(string)计算string所占的字符长度:返回字符串的长度,单位是字符
select * from table t where length(t.username) < 10;
3、Oracle字符串长度hengthb()函数:
lengthb(string)计算string所占的字节长度:返回字符串的长度,单位是字节
select lengthb('中国') from dual
对于单字节字符,LENGTHB和LENGTH是一样的.
如可以用length(‘string’)=lengthb(‘string’)判断字符串是否含有中文。
注:
一个汉字在Oracle数据库里占多少字节跟数据库的字符集有关,UTF8时,长度为三。
select lengthb(''飘'') from dual 可查询汉字在oracle数据库里占多少字节
实操例子:
update table t set t.pid = concat('1',t.pid) where length(t.pid) < 10;