mysql匹配汉字字符

示例SQL代码如下:

select username from user where not(username regexp "[\u0391-\uFFE5]");

这个正则表达式就能判断出来了。

猜你喜欢

转载自blog.csdn.net/sinat_18755913/article/details/50085061