REPEAT (Lakehouse v2)
Repeats a string a specified number of times.
Analyze Syntax
Section titled “Analyze Syntax”func.repeat(<str>, <n>)Analyze Examples
Section titled “Analyze Examples”func.repeat('ab', 3)
┌──────────┐│ 'ababab' │└──────────┘SQL Syntax
Section titled “SQL Syntax”REPEAT(<str>, <n>)SQL Examples
Section titled “SQL Examples”SELECT REPEAT('ab', 3);
┌────────┐│ ababab │└────────┘