>>-DIGITS--(--expression--)------------------------------------><
The schema is SYSIBM.
The DIGITS function returns a character-string representation of a number.
The argument must be an expression that returns a value of type SMALLINT, INTEGER, BIGINT or DECIMAL.
If the argument can be null, the result can be null; if the argument is null, the result is the null value.
The result of the function is a fixed-length character string representing the absolute value of the argument without regard to its scale. The result does not include a sign or a decimal character. Instead, it consists exclusively of digits, including, if necessary, leading zeros to fill out the string. The length of the string is:
Examples:
SELECT DISTINCT SUBSTR(DIGITS(INTCOL),1,4) FROM TABLEX
DIGITS(COLUMNX)
returns the value '000628'.
The result is a string of length six (the precision of the column) with leading zeros padding the string out to this length. Neither sign nor decimal point appear in the result.