过滤不含中文的字符:
where name REGEXP '[\\x{4e00}-\\x{9fa5}]'
提取只含有中文的字符:
where name REGEXP '^[\\x{4e00}-\\x{9fa5}]'
and name not REGEXP '[^\\x{4e00}-\\x{9fa5}]'
过滤不含中文的字符:
where name REGEXP '[\\x{4e00}-\\x{9fa5}]'
提取只含有中文的字符:
where name REGEXP '^[\\x{4e00}-\\x{9fa5}]'
and name not REGEXP '[^\\x{4e00}-\\x{9fa5}]'