SPACE function (ODBC compatible)
Syntax
SPACE ( count )
Description
The scalar function SPACE returns a character string consisting of count spaces.
Example
SELECT CONCAT(SPACE(3), name)
FROM customer
WHERE name = 'Roberts';
CONCAT ( ,NAME)
Roberts
1 record selected
Notes