如何在 Oracle 上获取 SYSDATE 的 UTC 值
可能是经典之作...您知道在 Oracle 上检索 SYSDATE 的 UTC 值的简单技巧吗(最好也可以在第 8 版上使用).
Probably a classic... Would you know a easy trick to retrieve an UTC value of SYSDATE on Oracle (best would be getting something working on the 8th version as well).
现在我有自定义函数:(
For now I've custom function :(
干杯,
斯蒂芬
推荐答案
可以用
SELECT SYS_EXTRACT_UTC(TIMESTAMP '2000-03-28 11:30:00.00 -02:00') FROM DUAL;
您可能还需要更改时区
ALTER SESSION SET TIME_ZONE = 'Europe/Berlin';
或阅读它
SELECT SESSIONTIMEZONE, CURRENT_TIMESTAMP FROM dual;
相关文章