SPACE (Lakehouse v1)
Returns a string consisting of N blank space characters.
Analyze Syntax
Section titled “Analyze Syntax”func.space(<n>)Analyze Examples
Section titled “Analyze Examples”func.space(20)┌─────────────────┐│ func.space(20) │├─────────────────┤│ │└─────────────────┘SQL Syntax
Section titled “SQL Syntax”SPACE(<n>);Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<n> | The number of spaces |
Return Type
Section titled “Return Type”String data type value.
SQL Examples
Section titled “SQL Examples”SELECT SPACE(20)┌──────────────────────┐│ SPACE(20) │├──────────────────────┤│ │└──────────────────────┘