oracle – 获取较小数字的数字溢出错误,但较大数字成功

前端之家收集整理的这篇文章主要介绍了oracle – 获取较小数字的数字溢出错误,但较大数字成功前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下是我的测试功能
create or replace FUNCTION test
RETURN NUMBER
AS
  v_count   number(15);
  v_msisdn  number(15);
BEGIN
  v_msisdn:= 225952 * 10000;
  -- v_msisdn:=50510060853 * 10000;

  return v_msisdn;
END;

当我执行该功能

select test() from dual;

我收到一个错误

1426. 00000 -  "numeric overflow"
*Cause:    Evaluation of an value expression causes an overflow/underflow.

但是,如果我更新

v_msisdn:=50510060853 * 10000;

我没有得到错误.

有人可以解释这个行为,因为第二个查询是一个更大的数字?

您可以通过将整数文字之一转换为整数或数字来解决此问题:
v_msisdn:= cast(225952 as integer) * 10000;

出于性能原因,小整数文字被视为pls_integer.不幸的是,这种类型会在溢出时引发异常:

A calculation with two PLS_INTEGER values that overflows the PLS_INTEGER range raises an overflow exception,even if you assign the result to a NUMBER data type For calculations outside the PLS_INTEGER range,use INTEGER,a predefined subtype of the NUMBER data type.

在第二个示例中,其中一个值(50510060853)不适合pls_integer的范围,因此被解释为整数.

这是AskTom上的类似问题:Datatype Number results in Numeric overflow although value is small enough

原文链接:/oracle/205271.html

猜你在找的Oracle相关文章