PostgreSQL 給定日期間隔初始時間計算

來源:互聯網
上載者:User

標籤:postgresql timestamp

1.功能說明:

date_trunc: 截取給定時間(TIMESTAMP,date),獲得指定精度(時,天,月,年)的初始使時間


2.一般時間

date_trunc(‘hour‘,TIMESTAMP ‘2018-08-16 20:38:40‘)

Result: 2018-08-16 20:00:00

date_trunc(‘day‘,TIMESTAMP ‘2018-08-16 20:38:40‘)

Result: 2018-08-16 00:00:00

date_trunc(‘month‘,TIMESTAMP ‘2018-08-16 20:38:40‘)

Result: 2018-08-01 00:00:00

date_trunc(‘year‘,TIMESTAMP ‘2018-08-16 20:38:40‘)

Result: 2018-01-01 00:00:00


3.特殊需求:

給定時間段的每年的所有月份的第一天,最後一天,下月第一天

-- Result: month_first_day, month_end_day, next_month

select date(zz) as month_first_day, date(zz + interval ‘1 month‘ - interval ‘1 day‘) as month_end_day, date(zz + interval ‘1 month‘) as next_month 

from generate_series(date_trunc(‘year‘,to_date(‘20180510‘,‘yyyymmdd‘)),date_trunc(‘year‘,to_date(‘201905‘,‘yyyymmdd‘)),‘1 month‘) as tt(zz);


SQL結果:

 month_first_day | month_end_day | next_month 

-----------------+---------------+------------

 2018-01-01      | 2018-01-31    | 2018-02-01

 2018-02-01      | 2018-02-28    | 2018-03-01

 2018-03-01      | 2018-03-31    | 2018-04-01

 2018-04-01      | 2018-04-30    | 2018-05-01

 2018-05-01      | 2018-05-31    | 2018-06-01

 2018-06-01      | 2018-06-30    | 2018-07-01

 2018-07-01      | 2018-07-31    | 2018-08-01

 2018-08-01      | 2018-08-31    | 2018-09-01

 2018-09-01      | 2018-09-30    | 2018-10-01

 2018-10-01      | 2018-10-31    | 2018-11-01

 2018-11-01      | 2018-11-30    | 2018-12-01

 2018-12-01      | 2018-12-31    | 2019-01-01

 2019-01-01      | 2019-01-31    | 2019-02-01

(13 rows)



找出指定時間小時,天,月,年的初始值


-- Result: dtrunc_hour, dtrunc_day, dtrunc_month, dtrunc_year

SELECT date_trunc(‘hour‘, TIMESTAMP ‘2018-08-16 20:38:40‘) as dtrunc_hour ,date_trunc(‘day‘, TIMESTAMP ‘2018-08-16 20:38:40‘) as dtrunc_day,date_trunc(‘month‘, TIMESTAMP ‘2018-08-16 20:38:40‘) as dtrunc_month,date_trunc(‘year‘, TIMESTAMP ‘2018-08-16 20:38:40‘) as dtrunc_year;


SQL結果:


     dtrunc_hour     |     dtrunc_day      |    dtrunc_month     |     dtrunc_year     

---------------------+---------------------+---------------------+---------------------

 2018-08-16 20:00:00 | 2018-08-16 00:00:00 | 2018-08-01 00:00:00 | 2018-01-01 00:00:00

(1 row)


postgres=# 


本文出自 “yiyi” 部落格,請務必保留此出處http://heyiyi.blog.51cto.com/205455/1946257

PostgreSQL 給定日期間隔初始時間計算

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.