postgresql 按日期范围查询

前端之家收集整理的这篇文章主要介绍了postgresql 按日期范围查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

Timestampwithouttimezone

方法一:

select*fromuser_infowherecreate_date >='2015-07-01'andcreate_date <'2015-08-15';

方法二:

select*fromuser_infowherecreate_date between'2015-07-01'and'2015-08-15';

方法三:

select*fromuser_infowherecreate_date >='2015-07-01'::timestampandcreate_date <'2015-08-15'::timestamp;

方法四:

select*fromuser_infowherecreate_date between to_date('2015-07-01','YYYY-MM-DD')andto_date('2015-08-15','YYYY-MM-DD');

原文链接:https://www.f2er.com/postgresql/194951.html

猜你在找的Postgre SQL相关文章