SPACE (Lakehouse v2)
Returns a string consisting of a specified number of spaces.
Analyze Syntax
Section titled “Analyze Syntax”func.space(<n>)Analyze Examples
Section titled “Analyze Examples”func.space(5)
┌─────────┐│ ' ' │└─────────┘SQL Syntax
Section titled “SQL Syntax”SPACE(<n>)SQL Examples
Section titled “SQL Examples”SELECT CONCAT('>', SPACE(5), '<');
┌─────────┐│ > < │└─────────┘