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


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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM