Course
Simulator
More
Premium
Log in
SQL Function Reference
Functions
REPEAT
REPEAT
Returns a string obtained from count repetitions of the string str
MySQL
REPEAT
(
str
,
count
)
Examples
MySQL
SELECT
REPEAT
(
'111'
,
3
)
;