代码之家  ›  专栏  ›  技术社区  ›  Blag

获取时区时间

  •  2
  • Blag  · 技术社区  · 7 年前

    我的头又受伤了,这个:

    在postgresql上,我想获取给定时区的本地时间。

    所以,在 15:45 GMT,我要 16:45 对于 +01:00 ,但我找不到好的答案:

    SQL Fiddle

    查询1 :

    select current_timestamp at time zone 'GMT' as time_local_gmt
    

    Results :

    |              time_local_gmt |
    |-----------------------------|
    | 2018-01-26T15:45:10.871659Z |
    

    这没关系。

    查询2 :

    select current_timestamp at time zone '+01:00' as time_local_paris
    

    Results :

    |            time_local_paris |
    |-----------------------------|
    | 2018-01-26T14:45:10.871659Z |
    

    这完全错了 -01:00 而不是 +01:00


    编辑: 请在此处查看有效答案: https://stackoverflow.com/a/48707297/5546267

    4 回复  |  直到 2 年前
        1
  •  2
  •   Abra BlueJK    7 年前

    这对我有用。

    select current_timestamp at time zone 'UTC+1';
    

    给了我以下结果。

    2018-01-26T17:00:58.773039Z
    

    还有一个列表 timezone names .

    以下是PostgreSQL 9.6文档中有关时区名称的摘录。

    “查看pg\U timezone\u名称”提供由设置时区识别的时区名称列表,以及它们的相关缩写、UTC偏移量和夏令时状态。

    基本上,下面的查询将为您提供巴黎的当前时间。

    SELECT current_timestamp AT TIME ZONE 'Europe/Paris';
    

    祝你好运

        2
  •  1
  •   Clijsters    7 年前

    为了完整性(即使@Avi Abrami的答案应该是您正在搜索的答案),让我们看看 datetime operators in the docs .

    可以使用 INTERVAL 要将小时数添加到存储值的关键字:

    SELECT current_timestamp AT TIME ZONE INTERVAL '+02:00' AS plus_two;
    

    然后导致

    2018-01-26T17:45:10.871659Z
    

    (GMT时间为 2018-01-26T15:45:10.871659Z )

    部分 9.9.3 AT_TIME_ZONE 提到我使用 间隔时间 无任何在先操作员:

    在这些表达式中,所需的时区可以指定为文本字符串(例如,“PST”)或间隔(例如。, 间隔“-08:00” ). 在文本情况下,可以使用第8.5.3节中描述的任何方式指定时区名称。

        3
  •  1
  •   Laurenz Albe    7 年前

    The documentation 说:

    另一个需要记住的问题是,在POSIX时区名称中,正偏移用于位置 西 格林威治的。在其他地方,PostgreSQL遵循ISO-8601约定,即正时区偏移为 格林威治的。

    我想这是你的问题。

        4
  •  0
  •   Blag    7 年前

    好了,终于找到了方法!

    SELECT
        current_timestamp 
            AT TIME ZONE 'GMT' 
            AT TIME ZONE '+01:00' 
                AS time_local_paris_right;
    

    默认情况下,时间戳为UTC,不带TZ,强制为GMT,然后是第二个 AT 使用正确的偏移量对其进行转换,以提供指定时区的本地时间。

    SQL Fiddle

    PostgreSQL 9.6架构设置 :

    查询2 :

    select current_timestamp at time zone 'GMT' as time_local_gmt
    

    Results :

    |              time_local_gmt |
    |-----------------------------|
    | 2018-02-09T13:44:56.824107Z |
    

    查询3 :

    select current_timestamp at time zone '+01:00' as time_local_paris_wrong
    

    Results :

    |      time_local_paris_wrong |
    |-----------------------------|
    | 2018-02-09T12:44:56.824107Z |
    

    查询4 :

    select current_timestamp at time zone 'GMT' at time zone '+01:00' as time_local_paris_right
    

    Results :

    |      time_local_paris_right |
    |-----------------------------|
    | 2018-02-09T14:44:56.824107Z |