码迷,mamicode.com
首页 > 数据库 > 详细

Oracle PLSQL Demo - 22.查看字符串的长度[lengthb, length],判断字符串是否包含中文

时间:2015-06-30 00:00:51      阅读:507      评论:0      收藏:0      [点我收藏+]

标签:

--Count the length of string
select lengthb(select * from scott.emp) as countted_by_byte, length(select * from scott.emp) as countted_by_char from dual;

--For some character encoding, the length() and the lengthb() is same in english
--you may use this feature to check whether the string constains the chinese char
declare 
  v_char varchar2(50) := hello world你好;
begin
  
  if lengthb(v_char) = length(v_char) then
    dbms_output.put_line(it have not chinese...);
  else 
    dbms_output.put_line(it have chinese...);
  end if;
  
end;

 

Oracle PLSQL Demo - 22.查看字符串的长度[lengthb, length],判断字符串是否包含中文

标签:

原文地址:http://www.cnblogs.com/nick-huang/p/4609118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!