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

pg数据库中时间查询的方式

时间:2019-12-11 17:06:37      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:ash   tail   tps   原创文章   时间   to_date   detail   timestamp   from   

方法一:
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‘);

 

 

 

————————————————
版权声明:本文为CSDN博主「樱花城堡的小侍卫」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/m0_37876745/article/details/95496642

pg数据库中时间查询的方式

标签:ash   tail   tps   原创文章   时间   to_date   detail   timestamp   from   

原文地址:https://www.cnblogs.com/fengli9998/p/12023472.html

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