我有一个列的时间戳没有时区类型,并希望有默认的当前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...

当前回答

还有另一个解决方案:

timezone('utc', now())

其他回答

还有另一个解决方案:

timezone('utc', now())

将其包装在函数中:

create function now_utc() returns timestamp as $$
  select now() at time zone 'utc';
$$ language sql;

create temporary table test(
  id int,
  ts timestamp without time zone default now_utc()
);

甚至不需要函数。只需要在默认表达式周围加上括号:

create temporary table test(
    id int, 
    ts timestamp without time zone default (now() at time zone 'utc')
);

函数已经存在: 时区(UTC的::文本,现在())

是什么

now()::timestamp

如果其他时间戳不带时区,则此强制转换将为当前时间生成匹配类型的“时间戳不带时区”。

不过,我想看看其他人对这个选择的看法。我仍然不相信自己对“有/没有”时区的理解。

编辑: 这里加上Michael Ekoka的评论,因为它澄清了一个重要的观点:

警告。这个问题是关于生成UTC的默认时间戳 恰巧没有存储时区的时间戳列(也许 因为如果你都知道了,就没有必要存储时区了 你的时间戳也一样)。你的解决方案就是 生成一个本地时间戳(对于大多数人来说,这是不必要的 将其设置为UTC)并将其存储为初始时间戳(不是初始时间戳) 指定它的时区)。