Postgres AT TIME ZONE 函数显示错误的时间?
Postgres AT TIME ZONE function shows wrong time?
我正在使用与 EAT 时区相同的新时区 UTC+3 转换,但 Postgres (9.1) 显示错误时间
select '2015-01-13 08:40:00.0'::timestamp with time zone AT TIME ZONE 'UTC+03',
'2015-01-13 08:40:00.0'::timestamp with time zone AT TIME ZONE 'EAT';
(此处默认时区为斯德哥尔摩)
结果是
"2015-01-13 04:40:00",
"2015-01-13 10:40:00"
为什么?
应该是2015-01-1310:40:00
如果将 JodaTime 与两个时区一起使用,则它会显示相同的正确结果“2015-01-13 10:40:00”。
拼写为 'UTC+3:00' 的时区名称是 POSIX 时区规范。
在这种风格中,格林威治标准时间以西的区域名称为正号,东部区域的名称为负号(例如 "Etc/GMT-14" 是格林威治标准时间 ahead/east 的 14 小时。)
见http://www.postgresql.org/docs/9.3/static/datatype-datetime.html#DATATYPE-TIMEZONES
我有类似的问题,它给了我错误的日期和时间,但这里的答案让我清楚地了解并解决了我的问题。 PostgreSQL wrong converting from timestamp without time zone to timestamp with time zone
所以我所做的是从
SELECT timestamp AT TIME ZONE '+08' FROM orders;
到
SELECT timestamp AT TIME ZONE 'UTC' AT TIME ZONE '+08' FROM orders;
从 Postgres documentation 可以选择使用 ::timestamptz
而不是 ::timestamp WITH TIME ZONE
并且我在进行转换时发现了首选结果;因为它是可用选项中最简洁的,同时仍可读。
SELECT created_at
,created_at::timestamp AT TIME ZONE 'EDT' -- yields bad result
,created_at::timestamp WITH TIME ZONE AT TIME ZONE 'EDT'
,created_at AT TIME ZONE 'UTC' AT TIME ZONE 'EDT'
,created_at::timestamptz AT TIME ZONE 'EDT'
2019-03-29 18:49:25.250431 -- raw UTC data
2019-03-29 22:49:25.250431 -- erroneous result
2019-03-29 14:49:25.250431 -- accurate result
2019-03-29 14:49:25.250431 -- accurate result
2019-03-29 14:49:25.250431 -- accurate result
EAT(东非时间)比 UTC (UTC+03:00) 早三个小时。
在 ISO-8601 格式中表示为 UTC+03:00
。
但是AT TIME ZONE
只支持POSIX-style.
表示的时区
在POSIX-style中,正号用于格林威治以西的区域。 (请注意,这与 PostgreSQL 中其他地方使用的 ISO-8601 符号约定相反。)
Format
PST
ART
W←UTC→E
EAT
HKT
ISO-8601
UTC-08
UTC-03
UTC+00
UTC+03
UTC+08
POSIX-style
UTC+08
UTC+03
UTC+00
UTC-03
UTC-08
在POSIX-style中,EAT的正确表示可以是:
- 'UTC-03'
- 'UTC-3'
- '-3'
- -3
以下 SQL 语句的结果必须是 TRUE
.
select now() at time zone -3 = now() at time zone 'EAT';
令人困惑的是,set time zone
语句支持 ISO-8601,而不是 POSIX-style。
依次执行以下SQL条语句,找出不同之处。
#
SQL
Result
①
set time zone -3;
SET
②
select now();
2022-02-24 04:53:41.921391-03
③
select timestamp '2022-02-24 12:00' at time zone -3;
2022-02-24 06:00:00-03
④
select timestamp '2022-02-24 12:00' at time zone +3;
2022-02-24 12:00:00-03
⑤
set time zone 3;
SET
⑥
select now();
2022-02-24 10:54:10.283953+03
⑦
select timestamp '2022-02-24 12:00' at time zone -3;
2022-02-24 12:00:00+03
⑧
select timestamp '2022-02-24 12:00' at time zone +3;
2022-02-24 18:00:00+03
⑨
set time zone local;
SET
⑩
select now();
2022-02-24 15:54:51.79643+08
⑪
select now() at time zone -3;
2022-02-24 10:55:02.209886
⑫
select now() at time zone 3;
2022-02-24 04:55:09.498461
⚠️请大家注意哦
参考文献:
我正在使用与 EAT 时区相同的新时区 UTC+3 转换,但 Postgres (9.1) 显示错误时间
select '2015-01-13 08:40:00.0'::timestamp with time zone AT TIME ZONE 'UTC+03',
'2015-01-13 08:40:00.0'::timestamp with time zone AT TIME ZONE 'EAT';
(此处默认时区为斯德哥尔摩)
结果是
"2015-01-13 04:40:00",
"2015-01-13 10:40:00"
为什么?
应该是2015-01-1310:40:00
如果将 JodaTime 与两个时区一起使用,则它会显示相同的正确结果“2015-01-13 10:40:00”。
拼写为 'UTC+3:00' 的时区名称是 POSIX 时区规范。 在这种风格中,格林威治标准时间以西的区域名称为正号,东部区域的名称为负号(例如 "Etc/GMT-14" 是格林威治标准时间 ahead/east 的 14 小时。)
见http://www.postgresql.org/docs/9.3/static/datatype-datetime.html#DATATYPE-TIMEZONES
我有类似的问题,它给了我错误的日期和时间,但这里的答案让我清楚地了解并解决了我的问题。 PostgreSQL wrong converting from timestamp without time zone to timestamp with time zone
所以我所做的是从
SELECT timestamp AT TIME ZONE '+08' FROM orders;
到
SELECT timestamp AT TIME ZONE 'UTC' AT TIME ZONE '+08' FROM orders;
从 Postgres documentation 可以选择使用 ::timestamptz
而不是 ::timestamp WITH TIME ZONE
并且我在进行转换时发现了首选结果;因为它是可用选项中最简洁的,同时仍可读。
SELECT created_at
,created_at::timestamp AT TIME ZONE 'EDT' -- yields bad result
,created_at::timestamp WITH TIME ZONE AT TIME ZONE 'EDT'
,created_at AT TIME ZONE 'UTC' AT TIME ZONE 'EDT'
,created_at::timestamptz AT TIME ZONE 'EDT'
2019-03-29 18:49:25.250431 -- raw UTC data
2019-03-29 22:49:25.250431 -- erroneous result
2019-03-29 14:49:25.250431 -- accurate result
2019-03-29 14:49:25.250431 -- accurate result
2019-03-29 14:49:25.250431 -- accurate result
EAT(东非时间)比 UTC (UTC+03:00) 早三个小时。
在 ISO-8601 格式中表示为 UTC+03:00
。
但是AT TIME ZONE
只支持POSIX-style.
在POSIX-style中,正号用于格林威治以西的区域。 (请注意,这与 PostgreSQL 中其他地方使用的 ISO-8601 符号约定相反。)
Format | PST | ART | W←UTC→E | EAT | HKT |
---|---|---|---|---|---|
ISO-8601 | UTC-08 | UTC-03 | UTC+00 | UTC+03 | UTC+08 |
POSIX-style | UTC+08 | UTC+03 | UTC+00 | UTC-03 | UTC-08 |
在POSIX-style中,EAT的正确表示可以是:
- 'UTC-03'
- 'UTC-3'
- '-3'
- -3
以下 SQL 语句的结果必须是 TRUE
.
select now() at time zone -3 = now() at time zone 'EAT';
令人困惑的是,set time zone
语句支持 ISO-8601,而不是 POSIX-style。
依次执行以下SQL条语句,找出不同之处。
# | SQL | Result |
---|---|---|
① | set time zone -3; | SET |
② | select now(); | 2022-02-24 04:53:41.921391-03 |
③ | select timestamp '2022-02-24 12:00' at time zone -3; | 2022-02-24 06:00:00-03 |
④ | select timestamp '2022-02-24 12:00' at time zone +3; | 2022-02-24 12:00:00-03 |
⑤ | set time zone 3; | SET |
⑥ | select now(); | 2022-02-24 10:54:10.283953+03 |
⑦ | select timestamp '2022-02-24 12:00' at time zone -3; | 2022-02-24 12:00:00+03 |
⑧ | select timestamp '2022-02-24 12:00' at time zone +3; | 2022-02-24 18:00:00+03 |
⑨ | set time zone local; | SET |
⑩ | select now(); | 2022-02-24 15:54:51.79643+08 |
⑪ | select now() at time zone -3; | 2022-02-24 10:55:02.209886 |
⑫ | select now() at time zone 3; | 2022-02-24 04:55:09.498461 |
⚠️请大家注意哦
参考文献: