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

本文涉及的产品
RDS PostgreSQL Serverless,0.5-4RCU 50GB 3个月
推荐场景:
对影评进行热评分析
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月前
|
关系型数据库 分布式数据库 数据库
PolarDB PostgreSQL版:Oracle兼容的高性能数据库
PolarDB PostgreSQL版是一款高性能的数据库,具有与Oracle兼容的特性。它采用了分布式架构,可以轻松处理大量的数据,同时还支持多种数据类型和函数,具有高可用性和可扩展性。它还提供了丰富的管理工具和性能优化功能,为企业提供了可靠的数据存储和处理解决方案。PolarDB PostgreSQL版在数据库领域具有很高的竞争力,可以满足各种企业的需求。
|
3月前
|
Oracle NoSQL 关系型数据库
主流数据库对比:MySQL、PostgreSQL、Oracle和Redis的优缺点分析
主流数据库对比:MySQL、PostgreSQL、Oracle和Redis的优缺点分析
661 2
|
7月前
|
SQL Oracle 关系型数据库
实时计算 Flink版产品使用合集之使用JDBC方式读取Oracle的number类型时,通过什么方式进行映射
实时计算Flink版作为一种强大的流处理和批处理统一的计算框架,广泛应用于各种需要实时数据处理和分析的场景。实时计算Flink版通常结合SQL接口、DataStream API、以及与上下游数据源和存储系统的丰富连接器,提供了一套全面的解决方案,以应对各种实时计算需求。其低延迟、高吞吐、容错性强的特点,使其成为众多企业和组织实时数据处理首选的技术平台。以下是实时计算Flink版的一些典型使用合集。
171 0
实时计算 Flink版产品使用合集之使用JDBC方式读取Oracle的number类型时,通过什么方式进行映射
|
7月前
|
人工智能 Oracle 关系型数据库
一篇文章弄懂Oracle和PostgreSQL的Database Link
一篇文章弄懂Oracle和PostgreSQL的Database Link
|
7月前
|
SQL Oracle 关系型数据库
常用数据库的分页语句(mySQL、oracle、PostgreSQL、SQL Server)
常用数据库的分页语句(mySQL、oracle、PostgreSQL、SQL Server)
|
Oracle 关系型数据库 数据库
PostgreSQL和Oracle两种数据库有啥区别?如何选择?
PostgreSQL和Oracle两种数据库有啥区别?如何选择?
532 0
|
SQL Oracle 关系型数据库
物化视图(Oracle与PostgreSQL对比)
物化视图(Oracle与PostgreSQL对比)
|
SQL Oracle 关系型数据库
Oracle,Postgresql等数据库使用
Oracle,Postgresql等数据库简单使用
174 0
Oracle,Postgresql等数据库使用
|
Oracle 关系型数据库 数据库
在Flink CDC中,使用Oracle 11g数据库的NUMBER类型作为主键
在Flink CDC中,使用Oracle 11g数据库的NUMBER类型作为主键
132 1
|
SQL Oracle 关系型数据库
Polar DB-O (兼容 Oracle 语法版本)和Polar DB PostgreSQL 版本概述(二)
Polar DB-O (兼容 Oracle 语法版本)和Polar DB PostgreSQL 版本概述(二)
1857 0

相关产品

  • 云原生数据库 PolarDB
  • 云数据库 RDS PostgreSQL 版
  • 推荐镜像

    更多