程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> PostgreSQL >> PostgreSQL中常用的時間日期腳本使用教程

PostgreSQL中常用的時間日期腳本使用教程

編輯:PostgreSQL

獲取系統時間函數

select now();        --2013-11-28 16:20:25.259715+08
select current_timestamp;  --2013-11-28 16:20:38.815466+08
select current_date;     --2013-11-28
select current_time;     --16:21:08.981171+08

時間的計算
--使用interval

select now()+interval '2 day'; --2013-11-30 16:21:47.610118+08 2天後
select now()-interval '2 day'; --2013-11-26 16:22:03.390593+08 2天前
select now()+interval '2 hour'; --2013-11-28 18:22:14.578733+08 2小時後

-- interval可以不寫,其值可以是

-- Abbreviation   Meaning 
-- Y           Years 
-- M           Months (in the date part) 
-- W          Weeks 
-- D           Days 
-- H           Hours 
-- M        Minutes (in the time part)

時間的截取 
--使用extract extract(interval,timestamp);

select extract(year from now());    --2013
select extract(mon from now());     --5月份

時間的轉換

select timestamp '2012-05-12 18:54:54';         --2012-05-12 18:54:54
select date '2012-05-12 18:54:54';            --2012-05-12
select time '2012-05-12 18:54:54';           --18:54:54
select TIMESTAMP WITH TIME ZONE '2012-05-12 18:54:54'  --2012-05-12 18:54:54+08

與unix時間戳的轉換 

 SELECT TIMESTAMP 'epoch' + 1341174767 * INTERVAL '1 second'; 
--2012-07-01 20:32:47

實例
1.當前時間/日期/時間戳
獲取當前時間的方式有很多種,在這之前我們需要知道以下兩種類型的區別:
總是返回當前的值 (clock_timestamp())
總是返回當前值,但在事務中它返回的是事務開始的時間(now())
讓我們看下面這個例子

postgres=# BEGIN; 
postgres=# SELECT now(); 
       now 
------------------------------- 
 2013-08-26 12:17:43.182331+02 
 
postgres=# SELECT now(); 
       now 
------------------------------- 
 2013-08-26 12:17:43.182331+02 
 
postgres=# SELECT clock_timestamp(); 
    clock_timestamp 
------------------------------- 
 2013-08-26 12:17:50.698413+02 
 
postgres=# SELECT clock_timestamp(); 
    clock_timestamp 
------------------------------- 
 2013-08-26 12:17:51.123905+02 

你會發現,語句執行時候clock_timestamp()的返回值每次都發生了改變,但是now()總是返回相同的值。當你需要考慮時區時,你應該特別注意這兩個函數差異。

2.時間區間:比如3天前
使用interval操作符你可以輕松的構建一個時間區間,例如

interval '1 day'
interval '5 days'
interval '5 days' + interval '3 hours'
interval '5 days 3 hours'

你可以看到,我們可以用interval操作符來簡單的進行數學運算,這特別適合於構建例如3天前這樣的時間區間,比如:

postgres=# SELECT now() - interval '3 days'; 
      ?column? 
------------------------------- 
 2013-08-23 12:23:40.069717+02 

3.獲取星期幾
有些時候對於一個給定的時間,你僅僅只想知道的是這天是星期幾或者是它屬於那個世紀的更或者你只想知道它是一年中的第幾天。PostgreSQL中的extract()函數提供了這種功能。
如下例子是在8月26日 星期一進行測試的。

postgres=# SELECT extract(DAY FROM now()); 
 date_part 
----------- 
    26 
 
postgres=# SELECT extract(DOW FROM now()); 
 date_part 
----------- 
     1   

4.時區轉換
有些時候,時區轉換對於特定時間在不同時區顯示特別有用。AT TIME ZONE提供了這種功能,它是如何做到的?我們將在一個事務中進行演示,因為同一事務中now()函數總是返回相同的值,從而我們可以很容易看到同一時間在不同時區顯示的差別。

postgres=# BEGIN; 
BEGIN 
postgres=# SELECT now(); 
       now 
------------------------------- 
 2013-08-26 12:39:39.122218+02 
 
postgres=# SELECT now() AT TIME ZONE 'GMT'; 
     timezone 
---------------------------- 
 2013-08-26 10:39:39.122218 
 
postgres=# SELECT now() AT TIME ZONE 'GMT+1'; 
     timezone 
---------------------------- 
 2013-08-26 09:39:39.122218 
 
postgres=# SELECT now() AT TIME ZONE 'PST'; 
     timezone 
---------------------------- 
 2013-08-26 02:39:39.122218 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved