mybatis的模糊查询

来源:互联网 发布:毛妹100能量伤害数据 编辑:程序博客网 时间:2024/05/23 18:25

 sql id="query_competition_where">  
    <if test="yzwx_competition!=null">  
<if test="yzwx_competition.cId != null and yzwx_competition.cId != ''">
<![CDATA[AND cId LIKE CONCAT('%', #{yzwx_competition.cId,jdbcType=VARCHAR},'%')]]>
</if>
<if test="yzwx_competition.orgId != null and yzwx_competition.orgId != ''">
<![CDATA[AND orgId LIKE CONCAT('%', #{yzwx_competition.orgId,jdbcType=VARCHAR},'%')]]>
</if>
<if test="yzwx_competition.eventName != null and yzwx_competition.eventName != ''">
<![CDATA[AND eventName LIKE CONCAT('%', #{yzwx_competition.eventName,jdbcType=VARCHAR},'%')]]>
</if>
<if test="yzwx_competition.eventLevel != null and yzwx_competition.eventLevel != ''">
<![CDATA[AND eventLevel LIKE CONCAT('%', #{yzwx_competition.eventLevel,jdbcType=VARCHAR},'%')]]>
</if>
     </if>  
 </sql>  

0 0
原创粉丝点击