apoc.number.exact.add
Function
apoc.number.exact.add(stringA String, stringB String)
- returns the result of adding the two given large numbers (using Java BigDecimal).
Usage Examples
RETURN apoc.number.exact.add('1213669989','1238126387') as output;
output |
---|
"2451796376" |
RETURN apoc.number.exact.add(null,'1238126387') as output;
output |
---|
NULL |
RETURN apoc.number.exact.add('1E6','1E6') as value;
Value |
---|
"2000000" |
Was this page helpful?