Oracle日期时间类型有两类,一类是日期时间类型,包括Date, Timestamp with time zone, Timestamp with local time zone。另一类是Interval类型,主要有Interval year to month 和Interval day to second两种。

KingbaseES也有类似的两类。其中的日期时间类型包括Timestamp with time zone, Timestamp without time zone,Date,Time with time zone , Time without time zone五种。Interval类型就是Interval。

KingbaseES扩展了Date数据类型,在兼容oracle模式时date的值是“年月日时分秒”与oracle一致,在pg模式下则为“年月日”。

一、日期时间类型

Date 类型:

  • Oracle的Date类型包括年、月、日、时、分、秒六个字段, 时间跨度是公元前4712年1月1日~公元9999年12月31日。
  • KingbaseES在兼容oracle模式下可以直接使用date数据类型或者使用 Timestamp(0) without time zone 类型来对应。时间跨度从公元前4713年~公元294276年。

1、Oracle date

SQL> create table o_test(value date);
Table created.
SQL> insert into o_test values(to_date('-4712-01-01 00:30:45', 'syyyy-mm-dd hh24:mi:ss'));
1 row created. SQL> insert into o_test values(to_date('-4712-01-01 00:30:45', 'syyyy-mm-dd hh24:mi:ss') - interval '1' day);
insert into o_test values(to_date('-4712-01-01 00:30:45', 'syyyy-mm-dd hh24:mi:ss') - interval '1' day) *
ERROR at line 1:
ORA-01841: (full) year must be between -4713 and +9999, and not be 0 SQL> insert into o_test values(to_date('9999-12-31 12:30:45', 'yyyy-mm-dd hh24:mi:ss'));
1 row created.
SQL> insert into o_test values(to_date('9999-12-31 12:30:45', 'yyyy-mm-dd hh24:mi:ss') + interval '1' day);
insert into o_test values(to_date('9999-12-31 12:30:45', 'yyyy-mm-dd hh24:mi:ss') + interval '1' day)
*
ERROR at line 1:
ORA-01841: (full) year must be between -4713 and +9999, and not be 0 SQL> select to_char(value, 'syyyy/mm/dd hh24:mi:ss') from o_test; TO_CHAR(VALUE,'SYYYY/MM/DDHH24:MI:SS')
----------------------------------------
-4712/01/01 00:30:45
9999/12/31 12:30:45

2、KingbaseES Date

KingbaseES date 类型实际 就是 Timestamp(0) without time zone

test=# create table test1(value timestamp(0) without time zone, value1 date);
CREATE TABLE
test=# insert into test1 values('4712-01-01 00:30:45BC','4712-01-01 00:30:45BC');
INSERT 0 1
test=# insert into test1 values(to_timestamp('4712-01-01 00:30:45BC','yyyy-mm-dd hh24:mi:ssBC') - interval '1 day',to_timestamp('4712-01-01 00:30:45BC','yyyy-mm-dd hh24:mi:ssBC') - interval '1 day');
INSERT 0 1
test=# insert into test1 values('9999-12-31 23:59:59','9999-12-31 23:59:59');
INSERT 0 1
test=# insert into test1 values(to_timestamp('9999-12-31 23:59:59','yyyy-mm-dd hh24:mi:ss') + interval '1 day',to_timestamp('9999-12-31 23:59:59','yyyy-mm-dd hh24:mi:ss') + interval '1 day');
INSERT 0 1 test=# select * from test1;
value | value1
------------------------+------------------------
4712-01-01 00:30:45 BC | 4712-01-01 00:30:45 BC
4713-12-31 00:30:45 BC | 4713-12-31 00:30:45 BC
9999-12-31 23:59:59 | 9999-12-31 23:59:59
10000-01-01 23:59:59 | 10000-01-01 23:59:59
(4 行记录)

二、Timestamp(p)类型

在Timestamp(p) 数据类型上两种数据库基本一致,除了毫秒精度上的区别。

  • Oracle 毫秒的精度最大为9位,默认为6位。数据中的毫秒数如果小于精度,会在有效数据后自动以0补足位数。
  • KingbaseES 毫秒精度最大为6位,默认为6位,当指定精度超过6位时表依然会创建但是会有警告提示并将精度自动修正为6位。在兼容oracle模式时会在末尾补0,pg模式不会补足。

1、Oracle Timestamp

SQL> create table o_test(value timestamp);

Table created.
SQL> insert into o_test values(to_timestamp('2021-10-1 12:30:50.123', 'yyyy-mm-dd hh24:mi:ss.ff'));
1 row created.
SQL> insert into o_test values(to_timestamp('2021-10-1 12:30:50.123456', 'yyyy-mm-dd hh24:mi:ss.ff6'));
1 row created.
SQL> insert into o_test values(to_timestamp('2021-10-1 12:30:50.123456789', 'yyyy-mm-dd hh24:mi:ss.ff9'));
1 row created. SQL> select * from o_test;
VALUE
---------------------------------------------------------------------------
01-OCT-21 12.30.50.123000 PM
01-OCT-21 12.30.50.123456 PM
01-OCT-21 12.30.50.123457 PM

Oracle Timestamp 指定精度

SQL> create table o_test1(value timestamp(9));
Table created.
SQL> insert into o_test1 values(to_timestamp('2021-10-1 11:30:50.123456789', 'yyyy-mm-dd hh24:mi:ss.ff9'));
1 row created.
SQL> insert into o_test1 values(to_timestamp('2021-10-1 11:30:50.123', 'yyyy-mm-dd hh24:mi:ss.ff'));
1 row created.
SQL> select * from o_test1;
VALUE
---------------------------------------------------------------------------
01-OCT-21 11.30.50.123456789 AM
01-OCT-21 11.30.50.123000000 AM

2、KingbaseES Timestamp without time zone

test=# create table test1(value timestamp without time zone);
CREATE TABLE
test=# insert into test1 values('2021-10-1 12:30:45.123456');
INSERT 0 1
test=# insert into test1 values('2021-10-1 12:30:45.123456789');
INSERT 0 1
test=# insert into test1 values('2021-10-1 12:30:45.123');
INSERT 0 1
兼容oracle模式
test=# select * from test1;
value
----------------------------
2021-10-01 12:30:45.123456
2021-10-01 12:30:45.123457
2021-10-01 12:30:45.123000 兼容pg模式
test=# select * from test1;
value
----------------------------
2021-10-01 12:30:45.123456
2021-10-01 12:30:45.123457
2021-10-01 12:30:45.123

KingbaseES Timestamp without time zone指定精度

test=# create table test2(value timestamp(9) without time zone);
警告: 将TIMESTAMP(9)减少到最大允许值,6
第1行create table test2(value timestamp(9) without time zone);
^
警告: 将TIMESTAMP(9)减少到最大允许值,6
警告: 将TIMESTAMP(9)减少到最大允许值,6
CREATE TABLE test=# create table test2(value timestamp(3) without time zone);
CREATE TABLE
test=# insert into test2 values('2021-10-1 12:30:45.123456789');
INSERT 0 1
test=# insert into test2 values('2021-10-1 12:30:45.123');
INSERT 0 1
test=# insert into test2 values('2021-10-1 12:30:45.1');
INSERT 0 1
test=# select * from test2;
value
-------------------------
2021-10-01 12:30:45.123
2021-10-01 12:30:45.123
2021-10-01 12:30:45.100

三、Timestamp(p) with time zone

带时区的时间类型,两种数据库之间的区别: Oracle会保存输入的的时区,而KingbaseES是把数据自动转换成为数据库时区对应的时间 (时区值由kingbase.conf中的timezone参数设定,可以使用set timezone来进行更改)。在使用时需要注意这个变化。

1、Oracle

SQL> create table o_test( value timestamp with time zone);
Table created.
SQL> insert into o_test values(systimestamp);
1 row created.
SQL> insert into o_test values(to_timestamp_tz('2012-12-31 12:30:50.123456 +10:00', 'yyyy-mm-dd hh24:mi:ss.ff tzh:tzm'));
1 row created.
SQL> select * from o_test;
VALUE
---------------------------------------------------------------------------
14-OCT-21 11.33.12.639156 AM +08:00
31-DEC-12 12.30.50.123456 PM +10:00

2、KingbaseES

test=# create table test3(value timestamp with time zone);
CREATE TABLE
test=# insert into test3 values(current_timestamp);
INSERT 0 1
test=# insert into test3 values('2021-12-31 12:30:50.123456+10');
INSERT 0 1
test=# insert into test3 values('2021-12-31 12:30:50.123456 PST');
INSERT 0 1
test=#
test=# select * from test3;
value
-------------------------------
2021-10-14 11:31:10.820010+08
2021-12-31 10:30:50.123456+08
2022-01-01 04:30:50.123456+08

四、interval

Oracle的Interval类型主要分为Interval year to month 和 Interval day to second两类。分别对应间隔为年月和间隔为日、时、分、秒的情况。

KingbaseES的interval提供了比较丰富的扩展:interval[fields][(p)]  ,interval类型有一个附加选项,它可以通过写下面之一的短语来限制存储的fields的集合:YEAR,MONTH,DAY,HOUR,MINUTE,SECOND,YEAR TO MONTH,DAY TO HOUR,DAY TO MINUTE, DAY TO SECOND,HOUR TO MINUTE,HOUR TO SECOND,MINUTE TO SECOND

注意如果fields和p被指定,fields必须包括SECOND,因为精度只应用于秒。

1、Oracle

Interval year(p) to month类型

Oracle的Interval year(p) to month类型表示年月的时间间隔。year, month一起使用的时候,写法类似于Interval '12-11' year to month。其中的年份根据精度p来决定,p值为1~9,默认为2。月份只能是0~11之间的值。单独使用month时精度也是控制年份的。

SQL> create table test(value interval year(3) to month);
Table created.
SQL> insert into test values(interval '100-5' year to month);
insert into test values(interval '100-5' year to month) *
ERROR at line 1:
ORA-01873: the leading precision of the interval is too small
SQL> insert into test values(interval '100-5' year(3) to month);
1 row created.
SQL> insert into test values(interval '1299' month);
insert into test values(interval '1299' month)
*
ERROR at line 1:
ORA-01873: the leading precision of the interval is too small
SQL> insert into test values(interval '1299' month(3));
1 row created. SQL> select * from test;
VALUE
---------------------------------------------------------------------------
+100-05
+108-03

2、KingbaseES

KingbaseES 可以直接使用interval类型的数据,使用上比较灵活。
test=# create table test4(value interval);
CREATE TABLE
test=# insert into test4 values('100-5');
INSERT 0 1
test=# insert into test4 values('90-12');
错误: 间隔字段超出范围: "90-12"
第1行insert into test4 values('90-12');
^
test=# insert into test4 values('90-11');
INSERT 0 1
test=# insert into test4 values('90-0');
INSERT 0 1
test=# insert into test4 values('10000 year');
INSERT 0 1
test=# insert into test4 values('12000 month');
INSERT 0 1
test=# insert into test4 values('1000 year 12000 month');
INSERT 0 1
test=# insert into test4 values('80000 hour');
INSERT 0 1
test=# select * from test4;
value
--------------------
100 years 5 mons
90 years 11 mons
90 years
10000 years
1000 years
2000 years
80000:00:00.000000

  

KingbaseES 时间类型数据和oracle时间类型的区别的更多相关文章

  1. Hibernate二进制或大文件类型数据和Oracle交互

    //测试存储二进制文件 @Test public void test() throws IOException{  InputStream in=new FileInputStream("E ...

  2. mybatis 处理CLOB/BLOB类型数据

    BLOB和CLOB都是大字段类型. BLOB是按二进制来存储的,而CLOB是可以直接存储文字的. 通常像图片.文件.音乐等信息就用BLOB字段来存储,先将文件转为二进制再存储进去.文章或者是较长的文字 ...

  3. hbase中double类型数据做累加

    public static Result incr(String tableFullName, String rowKey, String family, String qualifier, long ...

  4. HighCharts 图表插件 自定义绑定 时间轴数据

    HighCharts 图表插件 自定义绑定 时间轴数据,解决时间轴自动显示数据与实际绑定数据时间不对应问题! 可能要用到的源码片段:http://code.662p.com/list/14_1.htm ...

  5. 2016年11月3日JS脚本简介数据类型: 1.整型:int 2.小数类型: float(单精度) double(双精度) decimal () 3.字符类型: chr 4.字符串类型:sting 5.日期时间:datetime 6.布尔型数据:bool 7.对象类型:object 8.二进制:binary 语言类型: 1.强类型语言:c++ c c# java 2.弱类型语

    数据类型: 1.整型:int 2.小数类型: float(单精度) double(双精度) decimal () 3.字符类型: chr 4.字符串类型:sting 5.日期时间:datetime 6 ...

  6. mybatis查询日期时间数据得到long类型数据的问题

    使用mybatis查询数据时,如果数据库存储的是timestamp.datetime.date.time等时间类型,而Java bean也使用的是date类型,mybatis会自动将date类型转换为 ...

  7. mysql那些事(2)时间类型数据如何存储

    几乎每次数据库建模的时候,都会遇到时间类型数据存储的问题. mysql存储时间通常选择这四种类型:datetime.timestamp.int和bigint四种方式,到底使用什么类型,需要看具体的业务 ...

  8. Oracle 时间,日期 类型函数及参数详解

    ORACLE字符数字日期之间转化   Java代码   24 小时的形式显示出来要用 HH24       select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss' ...

  9. 45.oracle表类型、数据拆分、表分区

    不要做一些没有意义的事情,就比如说你要离职并不打算吃回头草,离职理由中完全没有必要说明“领导的水平太渣,人品太差”此类的原因,而是“个人原因”,当然实在不批准辞职另说. oracle表类型 表的类型分 ...

随机推荐

  1. 手写一个仿微信登录的nodejs程序

    前言 首先,我们看一下微信开放文档中的一张图: 上面的一幅图中清楚地介绍了微信登录整个过程,下面对图上所示进行总结: 一.二维码的获得 用户打开登录网页后,登录网页后台根据微信OAuth2.0协议向微 ...

  2. Vue.js与Node.js一起打造一款属于自己的音乐App(收藏)

    更多内容请见原文,原文转载自:https://blog.csdn.net/weixin_44519496/article/details/118755888

  3. [二进制漏洞]PWN学习之格式化字符串漏洞 Linux篇

    目录 [二进制漏洞]PWN学习之格式化字符串漏洞 Linux篇 格式化输出函数 printf函数族功能介绍 printf参数 type(类型) flags(标志) number(宽度) precisi ...

  4. 【python基础】第10回 周总结

    路径 可以简单的理解为路径就是某个事物所在的具体位置(坐标) 1.相对路径:必须有一个参考系,就是相对于自己的目标文件的位置. 2.绝对路劲:不需要有参考系,是指文件在硬盘上真正存在的路径. 计算机五 ...

  5. Linux系列之查找命令

    前言 Linux 有四个常用的查找命令:locate.whereis.which 和 find.本文介绍它们的区别和简单用法. locate命令 这个命令将检查你的整个文件系统,并找到该关键词的每一次 ...

  6. C++ 练气期之二维数组与矩阵运算

    1. 前言 C++中的一维数组可以存储线性结构的数据,二维数组可以存储平面结构的数据.如班上所有学生的各科目成绩就有二个维度,学生姓名维度和科目成绩维度. 这样的表格数据可以使用二维数组进行存储. 当 ...

  7. (零)机器学习入门与经典算法之numpy的基本操作

    1.根据索引来获取元素* 创建一个索引列表ind,用来装载索引,当numpy数据是一维数据时:一个索引对应的是一个元素具体的例子如下: import numpy as np # 数据是一维数据时:索引 ...

  8. leetcode教程系列——Binary Tree

    tree是一种常用的数据结构用来模拟真实物理世界里树的层级结构.每个tree有一个根(root)节点和指向其他节点的叶子(leaf)节点.从graph的角度看,tree也可以看作是有N个节点和N-1个 ...

  9. 阿里云有奖体验:如何通过ECS挂载NAS文件系统

    实验简介 本实验提供CentOS系统ECS一台和NAS文件服务. NAS基于POSIX文件接口,天然适配原生操作系统,提供共享访问,同时保证数据一致性和锁互斥.它提供了简单的可扩展文件存储以供与ECS ...

  10. go 编程规范

    如果没有编程规范会有什么问题? 哪些地方可以需要指定规范? 非编码类规范:编码规范 非编码规范 开源规范 http://www.ruanyifeng.com/blog/2011/05/how_to_c ...