What is the difference between #39;YYYY#39; and #39;RRRR#39; in Oracle SQL(Oracle SQL中YYYY和RRRR有什么区别)
问题描述
我在 SQL 中有 2 个查询:
I have 2 queries in SQL:
select trunc(to_date('27-Jul-1987'),'YYYY') FROM dual;
和
select trunc(to_date('27-Jul-1987'),'RRRR') FROM dual;
两者都给我相同的结果.'RRRR' 和 'YYYY' 有什么区别?
Both are giving me the same result. What is the difference between 'RRRR' and 'YYYY'?
推荐答案
YYYY
给出当前年份为 4 位数字.
YYYY
gives the current year as 4 digits.
RRRR
格式意味着 00
到 49
范围内的 2 位数年份被假定为当前 世纪(即具有与当前年份相同的前两位数字),并且以 50
到 99
给出的年份被假定在上一个 世纪.
RRRR
format means 2-digit years in the range 00
to 49
are assumed to be in the current century (ie have the same first two digits as the current year), and years given as 50
through 99
are assumed to be in the previous century.
这篇关于Oracle SQL中'YYYY'和'RRRR'有什么区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Oracle SQL中'YYYY'和'RRRR'有什么区别


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