PostgreSQL Oracle兼容性之 时间相减得到NUMBER - timestamp-timestamp=numeric not interval

本文涉及的产品
云数据库 RDS SQL Server,基础系列 2核4GB
RDS SQL Server Serverless,2-4RCU 50GB 3个月
推荐场景:
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
简介:

标签

PostgreSQL , Oracle , 兼容性 , timestamp , interval , 时间相减 , numeric


背景

Oracle 时间相减,得到的是一个浮点值N,代表N天。

PostgreSQL 时间相减,得到的是一个时间间隔类型,但是可以转换为一个浮点值。

Oracle 例子

SQL> select sysdate - to_date('2017-01-01','yyyy-mm-dd') from dual;  
  
SYSDATE-TO_DATE('2017-01-01','YYYY-MM-DD')  
------------------------------------------  
                                501.794444  

PostgreSQL 例子

1、原生时间相减返回的是interval

postgres=# select now() - to_timestamp('2017-01-01','yyyy-mm-dd');  
         ?column?           
--------------------------  
 501 days 19:01:15.950408  
(1 row)  

2、采用extract可以将interval转换为秒

postgres=# select extract(epoch from now()-to_timestamp('2017-01-01','yyyy-mm-dd'));  
   date_part      
----------------  
 43354846.07834  
(1 row)  

3、除以86400就得到天

postgres=# select 43354846/86400;  
       ?column?         
----------------------  
 501.7921990740740741  
(1 row)  

为了方便使用,可以定义个函数

 create or replace function ts_ts(timestamp, timestamp) returns float8 as $$  
   select extract(epoch from $1-$2)/86400;  
 $$ language sql strict immutable;  

使用函数相减即可得到天为单位的的浮点数

postgres=# select ts_ts(now(),to_timestamp('2017-01-01','yyyy-mm-hh'));  
      ts_ts         
------------------  
 501.755990025012  
(1 row)  

PG 内置的减号操作符

可以看到原生的时间相减得到的就是interval类型。

postgres=# \do -  
                                                                 List of operators  
   Schema   | Name |        Left arg type        |       Right arg type        |         Result type         |             Description               
------------+------+-----------------------------+-----------------------------+-----------------------------+-------------------------------------  
 pg_catalog | -    | abstime                     | reltime                     | abstime                     | subtract  
 pg_catalog | -    | aclitem[]                   | aclitem                     | aclitem[]                   | remove ACL item  
 pg_catalog | -    | anyrange                    | anyrange                    | anyrange                    | range difference  
 pg_catalog | -    | bigint                      | bigint                      | bigint                      | subtract  
 pg_catalog | -    | bigint                      | integer                     | bigint                      | subtract  
 pg_catalog | -    | bigint                      | smallint                    | bigint                      | subtract  
 pg_catalog | -    | box                         | point                       | box                         | subtract point from box (translate)  
 pg_catalog | -    | circle                      | point                       | circle                      | subtract  
 pg_catalog | -    | date                        | date                        | integer                     | subtract  
 pg_catalog | -    | date                        | integer                     | date                        | subtract  
 pg_catalog | -    | date                        | interval                    | timestamp without time zone | subtract  
 pg_catalog | -    | double precision            | double precision            | double precision            | subtract  
 pg_catalog | -    | double precision            | real                        | double precision            | subtract  
 pg_catalog | -    | inet                        | bigint                      | inet                        | subtract  
 pg_catalog | -    | inet                        | inet                        | bigint                      | subtract  
 pg_catalog | -    | integer                     | bigint                      | bigint                      | subtract  
 pg_catalog | -    | integer                     | integer                     | integer                     | subtract  
 pg_catalog | -    | integer                     | smallint                    | integer                     | subtract  
 pg_catalog | -    | interval                    | interval                    | interval                    | subtract  
 pg_catalog | -    | jsonb                       | integer                     | jsonb                       | delete array element  
 pg_catalog | -    | jsonb                       | text                        | jsonb                       | delete object field  
 pg_catalog | -    | jsonb                       | text[]                      | jsonb                       | delete object fields  
 pg_catalog | -    | money                       | money                       | money                       | subtract  
 pg_catalog | -    | numeric                     | numeric                     | numeric                     | subtract  
 pg_catalog | -    | path                        | point                       | path                        | subtract (translate path)  
 pg_catalog | -    | pg_lsn                      | pg_lsn                      | numeric                     | minus  
 pg_catalog | -    | point                       | point                       | point                       | subtract points (translate)  
 pg_catalog | -    | real                        | double precision            | double precision            | subtract  
 pg_catalog | -    | real                        | real                        | real                        | subtract  
 pg_catalog | -    | smallint                    | bigint                      | bigint                      | subtract  
 pg_catalog | -    | smallint                    | integer                     | integer                     | subtract  
 pg_catalog | -    | smallint                    | smallint                    | smallint                    | subtract  
 pg_catalog | -    | timestamp without time zone | integer                     | timestamp without time zone | subtract integer from timestamp  
 pg_catalog | -    | timestamp without time zone | interval                    | timestamp without time zone | subtract  
 pg_catalog | -    | timestamp without time zone | numeric                     | timestamp without time zone | subtract numeric from timestamp  
 pg_catalog | -    | timestamp without time zone | timestamp without time zone | interval                    | subtract  
 pg_catalog | -    | timestamp with time zone    | interval                    | timestamp with time zone    | subtract  
 pg_catalog | -    | timestamp with time zone    | timestamp with time zone    | interval                    | subtract  
 pg_catalog | -    | time without time zone      | interval                    | time without time zone      | subtract  
 pg_catalog | -    | time without time zone      | time without time zone      | interval                    | subtract  
 pg_catalog | -    | time with time zone         | interval                    | time with time zone         | subtract  
 pg_catalog | -    |                             | bigint                      | bigint                      | negate  
 pg_catalog | -    |                             | double precision            | double precision            | negate  
 pg_catalog | -    |                             | integer                     | integer                     | negate  
 pg_catalog | -    |                             | interval                    | interval                    | negate  
 pg_catalog | -    |                             | numeric                     | numeric                     | negate  
 pg_catalog | -    |                             | real                        | real                        | negate  
 pg_catalog | -    |                             | smallint                    | smallint                    | negate  

参考

《PostgreSQL Oracle 兼容性之 - round interval》

《PostgreSQL Oracle 兼容性 之 NUMTODSINTERVAL》

《PostgreSQL Oracle 兼容性之 - timestamp + numeric》

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
目录
相关文章
|
7月前
|
SQL Oracle 关系型数据库
实时计算 Flink版产品使用合集之使用JDBC方式读取Oracle的number类型时,通过什么方式进行映射
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。
162 0
实时计算 Flink版产品使用合集之使用JDBC方式读取Oracle的number类型时,通过什么方式进行映射
|
Oracle 关系型数据库
Oracle中decode 以及ROW_NUMBER() OVER() 函数等其它相关函数用法
Oracle中decode 以及ROW_NUMBER() OVER() 函数等其它相关函数用法
135 0
|
Oracle 关系型数据库 数据库
在Flink CDC中,使用Oracle 11g数据库的NUMBER类型作为主键
在Flink CDC中,使用Oracle 11g数据库的NUMBER类型作为主键
127 1
|
机器学习/深度学习 人工智能 Oracle
在Oracle中,TO_CHAR()、TO_NUMBER()和TO_DATE()函数的使用方法以及作用
在Oracle中,TO_CHAR()、TO_NUMBER()和TO_DATE()函数的使用方法以及作用
439 0
|
SQL Oracle 关系型数据库
Oracle-分析函数之排序后顺序号row_number()
Oracle-分析函数之排序后顺序号row_number()
102 0
|
SQL 移动开发 Oracle
Oracle中rownum和row_number()
Oracle中rownum和row_number()
735 0
|
SQL Oracle 网络协议
【.NET 6】使用EF Core 访问Oracle+Mysql+PostgreSQL并进行简单增改操作与性能比较
唠嗑一下。都在说去O或者开源,但是对于数据库选型来说,很多人却存在着误区。例如,去O,狭义上讲,是去Oracle数据库。但是从广义上来说,是去Oracle公司产品或者具有漂亮国垄断地位和需要商业授权的数据库产品。
515 0
【.NET 6】使用EF Core 访问Oracle+Mysql+PostgreSQL并进行简单增改操作与性能比较
|
Oracle 关系型数据库 PostgreSQL
|
存储 SQL Oracle
10 PostgreSQL 表级复制-物化视图篇, 支持异地,异构如 Oracle 到 pg 的物化视图|学习笔记
快速学习10 PostgreSQL 表级复制-物化视图篇,支持异地,异构如 Oracle 到 pg 的物化视图
10 PostgreSQL 表级复制-物化视图篇, 支持异地,异构如 Oracle 到 pg 的物化视图|学习笔记
|
7月前
|
存储 Oracle 关系型数据库
PolarDB 开源版通过orafce支持Oracle兼容性
背景PolarDB 的云原生存算分离架构, 具备低廉的数据存储、高效扩展弹性、高速多机并行计算能力、高速数据搜索和处理; PolarDB与计算算法结合, 将实现双剑合璧, 推动业务数据的价值产出, 将数据变成生产力.本文将介绍PolarDB开源版通过orafce支持Oracle兼容性 .测试环境为m...
135 0

相关产品

  • 云原生数据库 PolarDB
  • 云数据库 RDS PostgreSQL 版