MySQL 判断某字段是否包含中文或字母字符的方法

方法一:正则表达式

 

select * from typg_house_tag where tht_num not REGEXP '(^[0-9]+.[0-9]+$)|(^[0-9]$)'

 

 

方法二:length()和char_length()

 

select * from typg_house_tag where LENGTH(tht_num) != CHAR_LENGTH(tht_num)

上一篇:leetcode 198. House Robber


下一篇:戏说前端之CSS编码规范