在 PostgreSQL 中,时区转换的方法主要涉及到两个函数:AT TIME ZONE
和 timezone()
。
AT TIME ZONE
函数:SELECT timestamp_column AT TIME ZONE 'UTC' AS utc_timestamp
FROM table_name;
这将把 timestamp_column
中的时间戳转换为 UTC 时区的时间戳。
timezone()
函数:SELECT timezone('UTC', timestamp_column) AS utc_timestamp
FROM table_name;
这也会将 timestamp_column
中的时间戳转换为 UTC 时区的时间戳。
要注意的是,PostgreSQL 使用 timestamp with time zone
类型来存储日期和时间信息,因此如果需要根据不同的时区进行转换,可以先确保数据存储的时区是正确的,然后再根据需求使用上述函数进行转换。