SPACE
Returns a string consisting of N blank space characters.
Analyze Syntax
func.space(<n>)
Analyze Examples
func.space(20)
+-----------------+
| func.space(20) |
+-----------------+
| |
+-----------------+
SQL Syntax
SPACE(<n>);
Arguments
Arguments | Description |
---|---|
<n> | The number of spaces |
Return Type
String data type value.
SQL Examples
SELECT SPACE(20)
+----------------------+
| SPACE(20) |
+----------------------+
| |
+----------------------+
Last modified April 22, 2024 at 5:52 PM EST: string functions updated (f7f7143)