• psql的时间类型,通过时间查询


    psql的时间类型,通过时间查询

    psql有date/timestamp类型,date只显示年月日1999-01-08,而timestamp显示年月日时分秒 1999-01-08 09:54:03.249

    在我们写sql语句,根据时间进行查询的时候

    有下面一张表demo,

    Column Type Collation Nullable Default
    id integer   not null nextval('build_log_id_seq'::regclass)
    content character varying(50)   not null NULL::character varying
    createDate timestamp without time zone   not null NULL::character varying
    write_date date   not null NULL::character varying

      

     

    表内数据:

    id content createDate write_date
    1 内容1 2018-04-26 09:54:03.221 2018-01-02
    2 内容2 2018-02-13 08:15:12.222 2018-01-03
    3 内容3 2018-06-18 19:15:12.222 2018-01-04
    4 内容4  2018-08-12 12:15:12.22 2018-01-05

    表中的write_date是date类型可以直接使用=,select * from table where time='2018-01-02'

    表中的createDate是timestamp类型,如果使用=号,但是我们不能精确到十分秒,所以用=号就不会查出内容,

    我们可以使用><或者使用between and语句

    例如:

    查询4月26日创建的数据:

      select * from demo where  createDate >= '2018-04-26' and createDate < '2018-04-27'

     或者:

      select * from demo where createDate between '2018-04-26' and   '2018-04-27'

    还有一种,我们将字符串转成时间类型,

      select * from demo where createDate >= '2018-04-26'::date and  createDate < ( '2018-04-26'::date + '1 day'::interval )

     
    表内数据
    [Biǎo nèi shùjù]
    In the data table
  • 相关阅读:
    STM32 HAL库 UART 串口读写功能笔记
    c语言数组越界的避免方法
    MOS管做开关之初理解
    keil mdk 菜单 “project” 崩溃问题解决
    51 arm x86 的大小端记录
    (C99)复合字面量
    如何的keil试试调试中,看逻辑分析仪Logic viwer
    c语言之——整型的隐式转换与溢出检测
    C语言入坑指南-缓冲区溢出
    C语言入坑指南-被遗忘的初始化
  • 原文地址:https://www.cnblogs.com/liangyy/p/10025377.html
Copyright © 2020-2023  润新知