背景,字段存储的是中文
不生效代码如下
<if test="constellation != null and constellation != ''">AND u.constellation = #{constellation}</if>
正确生效的代码如下
<if test="constellation != null and constellation != ''">AND u.constellation like concat('%', #{constellation}, '%')</if>