mysql regexp

2017-05-17  本文已影响0人  allblux

在用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)

貌似可以.

上一篇下一篇

猜你喜欢

热点阅读