Skip to content

Returns a string consisting of a specified number of spaces.

func.space(<n>)
func.space(5)
┌─────────┐
' '
└─────────┘
SPACE(<n>)
SELECT CONCAT('>', SPACE(5), '<');
┌─────────┐
> <
└─────────┘