码迷,mamicode.com
首页 > 数据库 > 详细

postgresql 按日期范围查询

时间:2015-08-29 18:52:57      阅读:525      评论:0      收藏:0      [点我收藏+]

标签:postgresql   timestamp   日期查询   日期范围查询   

按照日期范围查询有好几种方法,日期字段类型一般为:

Timestamp without timezone

方法一:

select * from user_info where create_date >= ‘2015-07-01‘ and 
create_date < ‘2015-08-15‘;

方法二:

select * from user_info where 
create_date between ‘2015-07-01‘ and ‘2015-08-15‘;

方法三:

select * from user_info where 
create_date >= ‘2015-07-01‘::timestamp  
and create_date < ‘2015-08-15‘::timestamp;

方法四:

select * from user_info where create_date 
between to_date(‘2015-07-01‘,‘YYYY-MM-DD‘) 
and to_date(‘2015-08-15‘,‘YYYY-MM-DD‘);

版权声明:本文为博主原创文章,未经博主允许不得转载。

postgresql 按日期范围查询

标签:postgresql   timestamp   日期查询   日期范围查询   

原文地址:http://blog.csdn.net/kmust20093211/article/details/48089105

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!