zoukankan      html  css  js  c++  java
  • postgresql 按日期范围查询

    Timestamp without timezone

    方法一:

    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');

  • 相关阅读:
    systemctl
    防火墙firewalld
    k8s 基础概念
    进程
    模板问题
    自动发现
    oracle操作
    aix 10代oracle zabbix2.4.4 日志监控
    paramiko
    test
  • 原文地址:https://www.cnblogs.com/telwanggs/p/10766211.html
Copyright © 2011-2022 走看看