Repeats the input string a specified number of times.
REPEAT(input_string, repeat_count)
input_string
repeat_count
REPEAT("*", 5)
Result: *****
*****
REPEAT("ab", 3)
Result: ababab
ababab