美文网首页
regexp 操作符简单使用

regexp 操作符简单使用

作者: 一梦三四年lyp | 来源:发表于2019-01-22 01:15 被阅读0次
      最近需要找出某字段为汉字的所有记录,这时想起了mysql regexp正则方法 然后利用正则来匹配数据。
      校验汉字的正则:[^\x00-\xff]
      sql事例:
      select id  from msedu_student.tb_student where (
      hk_mc_id regexp '[^\x00-\xff]'
      || id_card regexp '[^\x00-\xff]' 
      || passport regexp '[^\x00-\xff]' 
      || taiwan_id regexp '[^\x00-\xff]'  )

    相关文章

      网友评论

          本文标题:regexp 操作符简单使用

          本文链接:https://www.haomeiwen.com/subject/boykjqtx.html