【Java】Mybatis实现模糊查询 李维山 2022-02-22 135 阅读1分钟 例:如下为模糊查询user表昵称字段: <select id="selectUserByKeyword" resultType="com.ygxk.lws.modules.user.entity.UserEntity"> select * from user where nickName LIKE CONCAT('%',#{keyword},'%') </select>