1. 程式人生 > 其它 >N-UCLA骨架資料視覺化

N-UCLA骨架資料視覺化

獲取當前時間戳-秒

使用PostgreSQL獲取當前系統時間戳。眾所周知,在MySQL中是這樣的:

select UNIX_TIMESTAMP(NOW())

新紀元時間 Epoch函式 是以 1970-01-01 00:00:00 UTC 為標準的時間,將目標時間與 1970-01-01 00:00:00
時間的差值以秒來計算 ,單位是秒

extract函式格式:
extract (field from source)
extract函式是從日期或者時間數值裡面抽取子域,比如年、月、日等。source必須是timestamp、time、interval型別的值表示式。field是一個識別符號或字串,是從源資料中的抽取的域。

(1)精確到秒

select floor(extract(epoch from now())); 結果:"1574826646"

(2)精確到秒的小數

select extract(epoch from now());結果:"1574826646.79929"

(3)精確到毫秒:

select floor(extract(epoch from((current_timestamp - timestamp '1970-01-01 00:00:00')*1000)));

時間戳轉時間

SELECT TO_TIMESTAMP(extract(epoch from now()))

獲取系統時間函式

獲取當前時間

select now();

結果:2021-08-11 17:11:30.652965+08

current_timestamp 同 now() 函式等效。

select current_timestamp;

獲取當前時間不帶年月日

select current_time;

結果:17:13:36.524366+08

獲取當前日期

select current_date;

時間的計算

兩年後

select now() + interval '2 years';

結果:2023-08-11 17:14:54.27425+08

一個月後

select now() + interval '1 month';

三週前

select now() - interval '3 week';

1天前

select now() - interval '1 day';

十分鐘後

select now() + '10 min';

計算兩個時間差

使用age(timestamp, timestamp)

select age(now(), timestamp '1989-02-05');

當前時間可以省略

select age(timestamp '2007-09-15');

timestamp是獲取指定時間的年月日 時分秒格式

select timestamp '1989-02-05';

時間差秒數:

語法:

extract(epoch FROM (timeatmp1-timestamp2))

例如:

SELECT
extract(epoch FROM (now() - (to_timestamp(xapp_recently_login_in_time,'yyyy-MM-dd hh24:mi:ss')) ))as gap_time,
to_timestamp(xapp_recently_login_in_time,'yyyy-MM-dd hh24:mi:ss')as new_xapp_recently_login_in_time
,* FROM dws_trfc_soul_seller_recently_login_intime
where buyer_id is not null

時間欄位的擷取

在開發過程中,經常要取日期的年,月,日,小時等值,PostgreSQL 提供一個非常便利的EXTRACT函式。

EXTRACT(field FROM source)

field 表示取的時間物件,source 表示取的日期來源,型別為 timestamp、time 或 interval。

取年份

select extract(year from now());

取月份

select extract(MONTH from now());

取天

select extract(day from timestamp '2013-04-13');

substr函式

substr(ftd_first_login_time,1,13)

檢視現在距1970-01-01 00:00:00 UTC 的秒數

將當前時間轉成秒型別,然後擷取秒數

select extract(epoch from now());

date_part函式

date_part函式是仿照在傳統的Ingres函式。等效於 SQL 標準函式extract:

date_part('field',source)

SELECT date_part('hour', INTERVAL '4 hours 3 minutes');

Result:4

時間間隔

時間間隔 interval [fields][(p)]

select interval '1 year 2 months 3 days 4 hours 5 minutes 6 seconds';

結果:

1 year 2 mons 3 days 04:05:06

date_part(‘epoch’, end_time - begin_time)

將時間差轉換為秒,然後轉換資料型別為數字型別除以60,得到分鐘數

select date_part('epoch', now() - '2021-08-11 17:00:00')::NUMERIC / 60

時區

with和without time zone兩者有什麼區別

1.區別

1)名字上看一個是帶時區的,另一個是不帶時區的,查出來的時間是一樣的,只是一個帶時區標誌,一個不帶而已,時區的基準是格林威治時間UTC。
2)這對於資料的顯示上來說,區別就是時間資料的末尾帶不帶時區標誌,即+/-時區,比如中國(prc),時區是東八區,帶時區標誌的話就是+08。

+08:表示 時區與全球統一時間 UTC 偏移量為 8 小時

without time zone

不帶時區

select now()::timestamp without time zone

結果:2021-08-11 18:26:34.751754

with time zone

帶時區

select now()::timestamp with time zone

結果:2021-08-11 18:27:53.889618+08

at time zone 'GMT-8'

AT TIME ZONE構造允許把時間戳轉換成不同的時區與timezone(zone,timestamp)函式等效

指定分割槽型別

select now()::timestamp at time zone 'GMT-8'

結果:2021-08-11 18:28:46.212463+08

select now()::timestamp at time zone 'HKT'

結果為:2021-08-11 18:30:44.73845+08

將日期轉成字串

to_char(time,'YYYY-MM-DD hh24:mi:ss') as time1,

to_char(time,'YYYY-MM-DD') as time2,

to_char(time,'YYYY-MM-DD hh:mi:ss') as time3