3.MyBatis常用
Posted yslu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3.MyBatis常用相关的知识,希望对你有一定的参考价值。
1.数据库日期转格式
DATE_FORMAT(measuring_time, ‘%Y-%m-%d‘) AS measuring_time,
2.日期大于小于
<if test="beginDate != null and beginDate != ‘‘"> AND DATE_FORMAT(measuring_time, ‘%Y-%m-%d‘) >= #{beginDate} </if> <if test="endDate != null and endDate != ‘‘"> AND DATE_FORMAT(measuring_time, ‘%Y-%m-%d‘) <= #{endDate} </if>
3.foreach写法
<if test="healthStatuses != null"> AND ha.health_status IN <foreach collection="healthStatuses" item="item" index="index" open="(" close=")" separator=","> #{item} </foreach> </if>
4.模糊搜索
<if test="teamName != null and teamName != ‘‘ "> AND team_name LIKE CONCAT(‘%‘, #{teamName} ,‘%‘) </if>
以上是关于3.MyBatis常用的主要内容,如果未能解决你的问题,请参考以下文章