mybatis怎么实现时间段查询

sinat_31841789 2015-10-08 01:40:12

数据库中就一个时间字段,请问各位大侠,xml的sql要怎么写?谢了好多次一直报错,求助!!
...全文
70215 26 打赏 收藏 转发到动态 举报
写回复
用AI写文章
26 条回复
切换为时间正序
请发表友善的回复…
发表回复
酷似阿模 2019-04-17
  • 打赏
  • 举报
回复
动态sql不能用>=<来判断 用>=这是大于等于 <=这是小于等于 注意分号
qq_28297467 2017-08-23
  • 打赏
  • 举报
回复
不错,我来顶一下
qq_34994724 2017-08-22
  • 打赏
  • 举报
回复
引用 11 楼 lk569696322 的回复:
<select id="selectOrderListByPage" parameterType="com.xhh.webui.system.entity.Order" resultType="com.xhh.webui.system.entity.Order"> select * from `order` <where> <if test="begindate != null and begindate !=''"> createTime>#{begindate,jdbcType=TIMESTAMP} </if> <if test="enddate != null and enddate !=''"> and createTime<#{enddate,jdbcType=TIMESTAMP} </if> </where> <if test="sort != null and order != null"> <![CDATA[ order by ${sort} ${order} ]]> </if> LIMIT #{start},#{rows} </select> 今天刚写的
上面的分页查询如何实现?小白一只,谢谢大神!
pc9528 2017-08-22
  • 打赏
  • 举报
回复 1
兄弟,给你推荐一个orm工具吧,不用写sql,面向对象的查询。api级的数据操作,多表查询简单的不要不要的 http://www.rabbit-open.top/rabbit/orm
kevin00012 2017-03-16
  • 打赏
  • 举报
回复

有时我们需要对一个时间段内的时间进行查询,而又不确定我们传入的参数究竟有几个(可以为一个:只有一个开始时间点或者只有一个结束时间点;也可以为两个:一个开始时间点喝一个结束时间点),这是我们就要用到动态查询。因为mybatis只支持传入一个参数,所有这里我们传入的map,以键值对的形式将我们需要的参数传进去,在map中添加键值对,key为startTime和endTime,而value则是我们传入的时间,注意:我们传入的时间要和数据库中的时间格式一致我们才能用小于小于来比较,比如我这里数据库用的是datetime,他的时间格式就是yyyy-MM-dd HH:mm:ss,我们也要传入类似的格式的数据才能相互比较,还有一点就是在XML中<是不能用需要用<代替使用。
podd 2017-03-16
  • 打赏
  • 举报
回复
时间段用between
jiajing1990_ 2017-03-15
  • 打赏
  • 举报
回复
<if test="beginTime != null and beginTime != '' "> <![CDATA[ AND dwarntime >= #{beginTime} ]]> </if> <if test="endTime != null and endTime != ''"> <![CDATA[ AND dwarntime <= #{endTime} ]]> </if>
翻滚啊牛宝宝 2017-03-15
  • 打赏
  • 举报
回复
time!="" 你要写这个吧
hbbddzh 2017-03-15
  • 打赏
  • 举报
回复
引用 11 楼 lk569696322 的回复:
<select id="selectOrderListByPage" parameterType="com.xhh.webui.system.entity.Order" resultType="com.xhh.webui.system.entity.Order"> select * from `order` <where> <if test="begindate != null and begindate !=''"> createTime>#{begindate,jdbcType=TIMESTAMP} </if> <if test="enddate != null and enddate !=''"> and createTime<#{enddate,jdbcType=TIMESTAMP} </if> </where> <if test="sort != null and order != null"> <![CDATA[ order by ${sort} ${order} ]]> </if> LIMIT #{start},#{rows} </select> 今天刚写的
我想知道你的实体类中enddate是什么类型的
吃货时代 2017-03-15
  • 打赏
  • 举报
回复 1
这样就可以了
Intboy 2016-04-29
  • 打赏
  • 举报
回复
引用 2 楼 sinat_31841789 的回复:
我是这么写的,但是做test的时候报错,说time1不存在,这个要怎么写,现在有点乱。
sql中>要转义,同时你time1应该是!=‘’吧
景川呀 2016-04-29
  • 打赏
  • 举报
回复
qq_34052171 2016-04-27
  • 打赏
  • 举报
回复
其实这个问题纯粹是你没有在第一个where条件汇总加上“and”
sean__zhao 2016-01-06
  • 打赏
  • 举报
回复
引用 2 楼 sinat_31841789 的回复:
我是这么写的,但是做test的时候报错,说time1不存在,这个要怎么写,现在有点乱。
醉的不行.... <if test="time!=null and time1='' "> <if test="time2!=null and time2!='' ">
糖果_ 2015-10-10
  • 打赏
  • 举报
回复
数据库是date的字段类型 t.rtstarttime <![CDATA[<]]>= to_date(#{rttime},'yyyy-MM-dd hh24:mi:ss') and t.rtendtime >= to_date(#{rttime},'yyyy-MM-dd hh24:mi:ss') rttime是传过来的字符串“2015-10-10 10:20:12”
im_thirteen 2015-10-10
  • 打赏
  • 举报
回复
<select id="selectOrderListByPage" parameterType="com.xhh.webui.system.entity.Order" resultType="com.xhh.webui.system.entity.Order"> select * from `order` <where> <if test="begindate != null and begindate !=''"> createTime>#{begindate,jdbcType=TIMESTAMP} </if> <if test="enddate != null and enddate !=''"> and createTime<#{enddate,jdbcType=TIMESTAMP} </if> </where> <if test="sort != null and order != null"> <![CDATA[ order by ${sort} ${order} ]]> </if> LIMIT #{start},#{rows} </select> 今天刚写的
longbaopyl 2015-10-09
  • 打赏
  • 举报
回复
WHERE 1=1 <if test="startDate != null and startDate != ''"> AND a.publishDate > #{startDate} </if> <if test="endDate != null and endDate != ''"> AND a.publishDate < #{endDate} </if> 这个是我自己写的,可以运行
DY1201 2015-10-09
  • 打赏
  • 举报
回复
你的time1啥意思啊?time1应该就是time吧,你把你的time1改成time
zilin110 2015-10-09
  • 打赏
  • 举报
回复
<![CDATA[ 这里面是sql语句. 大于号.小于号 ]]> 用这个把大于号.小于号包含起来就可以了.
bobo1232 2015-10-08
  • 打赏
  • 举报
回复
楼上正解的的deed
加载更多回复(6)

81,119

社区成员

发帖
与我相关
我的任务
社区描述
Java Web 开发
社区管理员
  • Web 开发社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧