SPACE
Description
Returns a number of occurrences of blank spaces (SPACE in Transact-SQL).
Sample Source Pattern
Syntax
SPACE ( integer_expression )
Examples
Input:
SELECT CONCAT('SOME', SPACE(5), 'TEXT') AS RESULT;
Output:
RESULT |
-------------+
SOME TEXT|
Known Issues
No issues were found.
Related EWIs
No related EWIs.
Last updated