REPEAT function (ODBC compatible)
Syntax
REPEAT ( string_exp,count )
Description
The scalar function REPEAT returns a character string composed of string_exp repeated count times.
Example
SELECT REPEAT(fld1,3)
FROM test100
WHERE fld1 = 'Afghanistan'
Results
REPEAT(FLD1,3)
AfghanistanAfghanistanAfghanistan
1 record selected
Notes