PostgreSQL Oracle兼容性之 - REMAINDER

本文涉及的产品
云原生数据库 PolarDB MySQL 版,Serverless 5000PCU 100GB
云原生数据库 PolarDB 分布式版,标准版 2核8GB
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
简介:

背景

在PostgreSQL数据库中常用的取余函数为mod,Oracle另外还提供了一个取余的函数remainder,它与mod的区别在于,mod取余时用了floor处理,而remainder使用round处理。

算法
1. mod

PG & Oracle mod
mod(x,y) = x - trunc(x/y)*y  

经典 mod
mod(x,y) = x - y * FLOOR(x/y)  

2. remainder

remainder(x,y) = x - y * ROUND(x/y)  

REMAINDER(n2, n1)

REMAINDER returns the remainder of n2 divided by n1.

This function takes as arguments any numeric datatype or any nonnumeric datatype that can be implicitly converted to a numeric datatype.

Oracle determines the argument with the highest numeric precedence, implicitly converts the remaining arguments to that datatype, and returns that datatype.

The MOD function is similar to REMAINDER except that it uses FLOOR in its formula, whereas REMAINDER uses ROUND.

  • If n1 = 0 or m2 = infinity, then Oracle returns
    An error if the arguments are of type NUMBER
    NaN if the arguments are BINARY_FLOAT or BINARY_DOUBLE.

  • If n1 != 0, then the remainder is n2 - (n1*N) where N is the integer nearest n2/n1.

If n2 is a floating-point number, and if the remainder is 0, then the sign of the remainder is the sign of n2.

Remainders of 0 are unsigned for NUMBER values.

PostgreSQL remainder

了解算法之后,PG就很容易实现remainder的函数了。

postgres=# create or replace function remainder(int8,int8) returns int8 as $$
  select ($1 - $2 * round($1::numeric/$2::numeric))::int8 ;
$$ language sql strict;
CREATE FUNCTION
postgres=# create or replace function remainder(int4,int4) returns int4 as $$
  select ($1 - $2 * round($1::numeric/$2::numeric))::int4 ;
$$ language sql strict;
CREATE FUNCTION
postgres=# create or replace function remainder(int2,int2) returns int2 as $$
  select ($1 - $2 * round($1::numeric/$2::numeric))::int2 ;
$$ language sql strict;
CREATE FUNCTION
postgres=# create or replace function remainder(numeric,numeric) returns numeric as $$
  select ($1 - $2 * round($1/$2)) ;                        
$$ language sql strict;
CREATE FUNCTION

验证结果

postgres=# select remainder(-11,4);
 remainder 
-----------
         1
(1 row)

postgres=# select mod(-11,4);
 mod 
-----
  -3
(1 row)

参考

http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions133.htm

http://docs.oracle.com/cd/B19306_01/server.102/b14200/functions088.htm

Count

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
相关文章
|
1月前
|
Oracle 关系型数据库 分布式数据库
PolarDB常见问题之PolarDB(Oracle兼容版) 执行命令报错如何解决
PolarDB是阿里云推出的下一代关系型数据库,具有高性能、高可用性和弹性伸缩能力,适用于大规模数据处理场景。本汇总囊括了PolarDB使用中用户可能遭遇的一系列常见问题及解答,旨在为数据库管理员和开发者提供全面的问题指导,确保数据库平稳运行和优化使用体验。
|
1月前
|
关系型数据库 分布式数据库 数据库
PolarDB PostgreSQL版:Oracle兼容的高性能数据库
PolarDB PostgreSQL版是一款高性能的数据库,具有与Oracle兼容的特性。它采用了分布式架构,可以轻松处理大量的数据,同时还支持多种数据类型和函数,具有高可用性和可扩展性。它还提供了丰富的管理工具和性能优化功能,为企业提供了可靠的数据存储和处理解决方案。PolarDB PostgreSQL版在数据库领域具有很高的竞争力,可以满足各种企业的需求。
|
7月前
|
Oracle 关系型数据库 数据库
PostgreSQL和Oracle两种数据库有啥区别?如何选择?
PostgreSQL和Oracle两种数据库有啥区别?如何选择?
204 0
|
8月前
|
SQL Oracle 关系型数据库
物化视图(Oracle与PostgreSQL对比)
物化视图(Oracle与PostgreSQL对比)
|
8月前
|
SQL Oracle 关系型数据库
PostgreSQL技术大讲堂 - 第27讲:Oracle-FDW部署
从零开始学PostgreSQL,PG技术大讲堂 - 第27讲:Oracle-FDW部署
167 2
|
4月前
|
SQL Oracle 关系型数据库
Oracle,Postgresql等数据库使用
Oracle,Postgresql等数据库简单使用
133 0
Oracle,Postgresql等数据库使用
|
7月前
|
Oracle 关系型数据库 分布式数据库
如何从Oracle迁移到PolarDB(ADAM)(二)
如何从Oracle迁移到PolarDB(ADAM)(二)
128 0
|
7月前
|
SQL Oracle 关系型数据库
Polar DB-O (兼容 Oracle 语法版本)和Polar DB PostgreSQL 版本概述(二)
Polar DB-O (兼容 Oracle 语法版本)和Polar DB PostgreSQL 版本概述(二)
695 0
|
11天前
|
SQL Oracle 关系型数据库
【Oracle】玩转Oracle数据库(一):装上去,飞起来!
【Oracle】玩转Oracle数据库(一):装上去,飞起来!
52 7

相关产品

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

    更多