美文网首页
mysql regexp

mysql regexp

作者: allblux | 来源:发表于2017-05-17 17:58 被阅读0次

    在用jpa的过程中需要使用find_in_set这个mysql的方法.
    使用in查询,当A,B,C中这个字段查询B或C的时候会失败

    使用regexp的方法

        @Query("select * FROM $table  WHERE concat(',',$column,',') regexp concat(',(',replace(?1,',','|'),'),')  order by ?#{#pageable} ",nativeQuery = true)
    

    貌似可以.

    相关文章

      网友评论

          本文标题:mysql regexp

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