我正在尝试使用 Postgres 函数extract()
从timestamptz
列中获取年份,但得到了意想不到的结果。我预计它将使用 UTC,但似乎使用系统的本地时区(在我的情况下为 EST)。无论时间戳或系统的时区是什么,如何获得extract
返回 UTC 的函数?
示例 1:
testdb=# create table foo ( t timestamptz check( extract(year from t)::int = 2013) );
testdb=# \d foo
Table "public.foo"
Column | Type | Modifiers
--------+--------------------------+-----------
t | timestamp with time zone |
Check constraints:
"foo_t_check" CHECK (date_part('year'::text, t)::integer = 2013)
testdb=# insert into foo values ('2013-01-01 01:49:05.048+00');
ERROR: new row for relation "foo" violates check constraint "foo_t_check"
DETAIL: Failing row contains (2012-12-31 20:49:05.048-05).
示例 2:
testdb=# SELECT EXTRACT(year FROM '01-01-1970 00:00:00 UTC+01'::timestamp with time zone);
date_part
-----------
1969
(1 row)