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