首页 > 学院 > 开发设计 > 正文

mybatis 根据条件查询

2019-11-10 19:06:27
字体:
来源:转载
供稿:网友
<select id="GetRecordCountByCondition1" parameterType="java.util.Map" resultType="int"> select count(*) from record where <if test="startime != null and startime != ''">  record_time>=#{startime} and    </if>  <if test="stoptime != null and stoptime != ''">  record_time<![CDATA[ <= ]]>#{stoptime} and   </if>  <if test="mintemp != null and mintemp != ''">  record_temp>=#{mintemp} and   </if>  <if test="maxtemp != null and maxtemp != ''">  record_time<![CDATA[ <= ]]>#{maxtemp} and   </if>  record_p_pk=${id}</select>


上一篇:邮件群发

下一篇:有趣的算法题

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表