• 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');
  • 相关阅读:
    Unable to load dbxmss.dll (ErrorCode 16). It may be missing from the system Path
    同一网内机器无法连通解决一例
    Day.24
    Day.24
    Day.23
    Day.22
    Day.23
    Day.21
    Day.22
    Day.01-Day.20
  • 原文地址:https://www.cnblogs.com/remember-forget/p/9579763.html
Copyright © 2020-2023  润新知