Different CURRENT_TIMESTAMP and SYSDATE in oracle(oracle中CURRENT_TIMESTAMP和SYSDATE不同)
问题描述
在 oracle 10g 中执行此 SQL 后:
After executing this SQL in oracle 10g:
SELECT SYSDATE, CURRENT_TIMESTAMP FROM DUAL
我收到这个奇怪的输出:
I receive this strange output:
时间差的原因是什么?服务器时间等于 SYSDATE 值
What is cause of the difference in time? The server time is equal of SYSDATE value
推荐答案
CURRENT_DATE 和 CURRENT_TIMESTAMP 返回会话时区中的当前日期和时间.
CURRENT_DATE and CURRENT_TIMESTAMP return the current date and time in the session time zone.
SYSDATE 和 SYSTIMESTAMP 返回系统日期和时间 - 即数据库所在的系统.
SYSDATE and SYSTIMESTAMP return the system date and time - that is, of the system on which the database resides.
如果您的客户端会话与数据库所在的服务器不在同一个时区(或者说它不是,通过您的 NLS 设置),混合 SYS* 和 CURRENT_* 函数将返回不同的值.他们都是对的,他们只是代表不同的东西.看起来您的服务器处于(或认为是)+4:00 时区,而您的客户端会话处于 +4:30 时区.
If your client session isn't in the same timezone as the server the database is on (or says it isn't anyway, via your NLS settings), mixing the SYS* and CURRENT_* functions will return different values. They are all correct, they just represent different things. It looks like your server is (or thinks it is) in a +4:00 timezone, while your client session is in a +4:30 timezone.
如果时钟不同步,您可能还会看到时间上的微小差异,这在这里似乎不是问题.
You might also see small differences in the time if the clocks aren't synchronised, which doesn't seem to be an issue here.
这篇关于oracle中CURRENT_TIMESTAMP和SYSDATE不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:oracle中CURRENT_TIMESTAMP和SYSDATE不同
基础教程推荐
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 无法解决整理冲突 2021-01-01
