Loading lesson path
Concept visual
Start at both ends
SELECT REPEAT("SQL Tutorial", 3);The REPEAT() function repeats a string as many times as specified.
string, number )
Required. The string to repeat number Required. The number of times to repeat the string
From MySQL 4.0
Repeat the text in CustomerName 2 times: SELECT REPEAT(CustomerName, 2)
FROM Customers;SELECT REPEAT("SQL Tutorial", 0);❮ MySQL Functions