加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

在PostgreSQL中使用UTC中的当前时间作为默认值

发布时间:2020-12-13 16:52:35 所属栏目:百科 来源:网络整理
导读:我有一个TIMESTAMP WITHOUT TIME ZONE类型的列,并希望默认为UTC的当前时间。获取当前时间在UTC是很容易: postgres=# select now() at time zone 'utc'; timezone ---------------------------- 2013-05-17 12:52:51.337466(1 row) 正在使用列的当前时间戳
我有一个TIMESTAMP WITHOUT TIME ZONE类型的列,并希望默认为UTC的当前时间。获取当前时间在UTC是很容易:
postgres=# select now() at time zone 'utc';
          timezone          
----------------------------
 2013-05-17 12:52:51.337466
(1 row)

正在使用列的当前时间戳:

postgres=# create temporary table test(id int,ts timestamp without time zone default current_timestamp);
CREATE TABLE
postgres=# insert into test values (1) returning ts;
             ts             
----------------------------
 2013-05-17 14:54:33.072725
(1 row)

但这使用本地时间。试图强制到UTC导致语法错误:

postgres=# create temporary table test(id int,ts timestamp without time zone default now() at time zone 'utc');
ERROR:  syntax error at or near "at"
LINE 1: ...int,ts timestamp without time zone default now() at time zo...
甚至不需要函数。只需在默认表达式周围加上括号:
create temporary table test(
    id int,ts timestamp without time zone default (now() at time zone 'utc')
);

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读