您好我在大型机上有一个db2数据库,其中包含由网络应用和手机语音电话ivr应用程序写入的数据。他们都位于美国中部时区。该网络应用程序正在被重写并移至美国东部时间。插入记录所有使用sysdate的记录时间戳,例如创建记录或上次更新记录时。由于db查询是“select ...... order by create_time”或“select .... order by update_time”,因此不同的时区会导致订单问题。
我想要一种方法来显示一个TZ(可能是东部)的所有记录。
select some_time_util(*,easternTZ) from table where condition=easternTz order by some_time_util( create_date, easten_tz)
union
select some_time_util(*,centralTZ) from table where condition=centralTz order by some_time_util( create_date, centeral_tz)
db2如何支持timestamsp和timezones的概念?
答案 0 :(得分:1)