模糊key搜索
Posted 无敌的星哥哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模糊key搜索相关的知识,希望对你有一定的参考价值。
<select id="queryPro" resultType="com.EnforceReportProblemParam">
SELECT
*
FROM enforce_report_problem
where action_id = #param.WhistleId
//
<if test="param.keyWord!=null and param.keyWord!=''">
AND (
problem_code like concat('%',#param.keyWord,'%')
or problem_source_name like concat('%',#param.keyWord,'%')
)
</if>
</select>
以上是关于模糊key搜索的主要内容,如果未能解决你的问题,请参考以下文章