REPEAT
Repeats the given string (the first parameter) a number of times (the second parameter) In the example below, the string
abc-123
will be repeated
10
times
SELECT 
    REPEAT('abc-123', 10)
by Valeri Tandilashvili
4 years ago
MySQL
String functions
1
Pro tip: use ```triple backticks around text``` to write in code fences