postgresql 按日期范圍查詢


按照日期范圍查詢有好幾種方法,日期字段類型一般為:

Timestamp without timezone

方法一:

 

  1.  
    select * from user_info where create_date
  2.  
    >= '2015-07-01' and create_date < '2015-08-15';

 

方法二:

 

  1.  
    select * from user_info where create_date
  2.  
    between '2015-07-01' and '2015-08-15';

 

方法三:

 

  1.  
    select * from user_info where create_date
  2.  
    >= '2015-07-01'::timestamp and create_date < '2015-08-15'::timestamp;

 

方法四:

 

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

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM