DB2 Version 9.7 for Linux, UNIX, and Windows

DIGITS scalar function

Read syntax diagramSkip visual syntax diagram
>>-DIGITS--(--expression--)------------------------------------><

The schema is SYSIBM.

The DIGITS function returns a character-string representation of a number.

The expression must return a value that is a SMALLINT, INTEGER, BIGINT, DECIMAL, CHAR, or VARCHAR data type. In a Unicode database, if a supplied argument is a GRAPHIC or VARGRAPHIC data type, it is first converted to a character string before the function is executed. A CHAR or VARCHAR value is implicitly cast to DECIMAL(31,6) before evaluating the function.

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:
  • 5 if the argument is a small integer
  • 10 if the argument is a large integer
  • 19 if the argument is a big integer
  • p if the argument is a decimal number with a precision of p.

Examples: