Oracle字符函数应用检测汉字的方法
-- 验证是否包含汉字
create table test(a varchar2(10)); insert into test values('鸟'); insert into test values('深刻'); insert into test values('aaa'); insert into test values('bbb'); insert into test values('b鸟bb'); SELECT * FROM TEST;
-- 对于全角字符,ascii值的范围是\uFF00-\uFFFF
select a, asciistr(a) from test where asciistr(a) like '%\%'; -- 结果是有汉字的 select a ,asciistr(a) from test where asciistr(a) not like '%\%'; -- 结果是不包含汉字的
-- length求得是字符长度,lengthb求得是字节长度,汉字是多字节字符
select a, length(a) , lengthb(a) from TEST where length(a) != lengthb(a) ; --结果是有汉字的
相关推荐
Omega 2020-08-16
娜娜 2020-07-28
goodriver 2020-06-17
Justdoit00 2020-07-04
sunboy 2020-06-14
LuoXinLoves 2020-06-10
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
Justdoit00 2020-06-01
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27
oraclemch 2020-04-22
Carlos 2020-04-18