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