09-04
06

关于between and包含一段问题

执行下面的HQL语句,发现3月31日的记录无法查询到,百思不得其解。
引用内容 引用内容
select count(a.click) from Article as a where  (a.sendTime between '2009-03-01' and '2009-03-31') and a.admin=56 and (a.state=1)


后来发现数据库是以03月31日00:00:00为截止点,所以需要修改为:
引用内容 引用内容
select count(a.click) from Article as a where  (a.sendTime between '2009-03-01' and '2009-03-31 23:59:59') and a.admin=56 and (a.state=1)


文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: between 包含
相关日志:
评论: 0 | 引用: 0 | 查看次数: 450
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭