Oracle#39;s default date format is YYYY-MM-DD, WHY?(Oracle 的默认日期格式是 YYYY-MM-DD,为什么?)
问题描述
Oracle 的默认日期格式是 YYYY-MM-DD.这意味着如果我这样做:
Oracle's default date format is YYYY-MM-DD. Which means if I do:
select some_date from some_table
...我失去约会的时间部分.
...I lose the time portion of my date.
是的,我知道你可以修复"这个问题:
Yes, I know you can "fix" this with:
alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';
但是说真的,为什么上面不是默认的?特别是在 DBMS 中,两种主要的时间跟踪数据类型(DATE 和 TIMESTAMP)都具有包括(至少)精度低至 1 秒的时间组件.
But seriously, why isn't the above the default? Especially in a DBMS where the two primary time-tracking data types (DATE and TIMESTAMP) both have a time component that includes (at least) accuracy down to 1 second.
推荐答案
如果您使用此查询为数据仓库生成输入文件,则需要适当地格式化数据.基本上在这种情况下,您将日期(确实有时间组件)转换为字符串.您需要明确格式化您的字符串或更改您的 nls_date_format 以设置默认值.在您的查询中,您可以简单地执行以下操作:
If you are using this query to generate an input file for your Data Warehouse, then you need to format the data appropriately. Essentially in that case you are converting the date (which does have a time component) to a string. You need to explicitly format your string or change your nls_date_format to set the default. In your query you could simply do:
select to_char(some_date, 'yyyy-mm-dd hh24:mi:ss') my_date
from some_table;
这篇关于Oracle 的默认日期格式是 YYYY-MM-DD,为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Oracle 的默认日期格式是 YYYY-MM-DD,为什么?


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- SQL 临时表问题 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01