SPACE

Returns a string consisting of a specified number of spaces.

Analyze Syntax

func.space(<n>)

Analyze Examples

func.space(5)

┌─────────┐
 '     '  
└─────────┘

SQL Syntax

SPACE(<n>)

SQL Examples

SELECT CONCAT('>', SPACE(5), '<');

┌─────────┐
 >     <  
└─────────┘