Skip to content

Repeats a string a specified number of times.

func.repeat(<str>, <n>)
func.repeat('ab', 3)
┌──────────┐
'ababab'
└──────────┘
REPEAT(<str>, <n>)
SELECT REPEAT('ab', 3);
┌────────┐
│ ababab │
└────────┘