首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

数据库中怎么判断一个字符串内是否含有中文

2012-07-22 
数据库中如何判断一个字符串内是否含有中文oracleselect * from t1 where length(c1) ! lengthb(c1)SqlSe

数据库中如何判断一个字符串内是否含有中文
oracle
select * from t1 where length(c1) != lengthb(c1)
SqlServer
select * from t1 where len(unicode(c1)) &lt. 5

热点排行