SPACE()
SPACE() — Returns a string of spaces of the specified length.
Synopsis
SPACE( numeric-expression )
Description
The SPACE() function returns a string composed of n spaces where the string length
n is specified by the function's argument. SPACE(n) is a synonym for REPEAT(' ', n).
Example
The following example uses the SPACE and CHAR_LENGTH functions to ensure the result is a fixed length, padded with
blank spaces.