Decimal Functions and Operators¶
Decimal Literals¶
Use
DECIMAL 'xxxxxxx.yyyyyyy'
syntax to define literal of DECIMAL type.The precision of DECIMAL type for literal will be equal to number of digits in literal (including trailing and leading zeros). The scale will be equal to number of digits in fractional part (including trailing zeros).
Example literal |
Data type |
---|---|
|
|
|
|
|
|
Binary Arithmetic Decimal Operators¶
Standard mathematical operators are supported. The table below explains precision and scale calculation rules for result. Assuming
x
is of typeDECIMAL(xp, xs)
andy
is of typeDECIMAL(yp, ys)
.
Operation |
Result type precision |
Result type scale |
and
|
|
|
|
|
|
|
|
|
|
|
|
If the mathematical result of the operation is not exactly representable with the precision and scale of the result data type, then an exception condition is raised -
Value is out of range
.When operating on decimal types with different scale and precision, the values are first coerced to a common super type. For types near the largest representable precision (38), this can result in Value is out of range errors when one of the operands doesn’t fit in the common super type. For example, the common super type of decimal(38, 0) and decimal(38, 1) is decimal(38, 1), but certain values that fit in decimal(38, 0) cannot be represented as a decimal(38, 1).
Comparison Operators¶
All standard comparison operators and
BETWEEN
operator work forDECIMAL
type.
Unary Decimal Operators¶
The
-
operator performs negation. The type of result is same as type of argument.