regexp_like 不识别\u语法,需要利用oracle的UNISTR函数实现
UNISTR(str)函数是相反的过程,将unicode编码变为字符
不匹配任何包含中文的字段,语法如下:
regexp_like(col_name,'^[^' || unistr('\4e00') || '-' || unistr('\9fa5') || ']+$')
如果匹配不起作用,请检查oracle数据库编码,如为gbk编码,上述方法无法匹配:
select * from nls_database_parameters where parameter ='NLS_CHARACTERSET';
在GBK 字符集下,中文的length 是1个字符,而lengthb 是2个byte,通过如下方法检测是否包含中文:
select * from t where length(c1) != lengthb(c1);