Concatenates a string a specified number of times.
REPLICATE ( string-expression, integer-expression )
string-expression The string to be repeated.
integer-expression The number of times the string is to be repeated.
The following statement returns the value repeatrepeatrepeat.
SELECT REPLICATE( 'repeat', 3 ) FROM iq_dummy
REPLICATE is the same as the REPEAT function.