ฉันมีคอลัมน์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...