REPEAT

Returns a string repeated the specified number of times. The string must be a binary, character, or graphic string. The number of times to repeat the string must be a positive integer.

Example:

Repeat 'abc' twice to create 'abcabc'.

  SELECT REPEAT('abc',2)
		FROM T1