首页 > 数据库技术 > 详细

MySQL、mybatis的查询条件-时间段

时间:2016-08-12 00:41:54      阅读:1177      评论:0      收藏:0      [点我收藏+]

1.配置文件中的写法

<if test="startTime !=null and startTime !=‘‘ ">
         <![CDATA[ and createTime  >=  #{startTime}  ]]>
    </if>
    <if test="endTime !=null and endTime!=‘‘ "  >
         <![CDATA[ and createTime <=  #{endTime}  ]]>
    </if>

2.Java代码中参数的传递

》实体类中的成员变量

private Date startTime;

private Date endTime;

 

entity.setStartTime(startTime);
entity.setEndTime(endTime);

》使用map集合封装参数

Map<String, Object> map = new HashMap<String, Object>();
map.put("startTime", startTime);
map.put("endTime", endTime);

 

IT技术和行业交流群 417691667

MySQL、mybatis的查询条件-时间段

原文:http://www.cnblogs.com/sun-rain/p/5762982.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!