C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
| MySQL REPEAT() FunctionREPEAT(str,count) is a Sring function of MySQL. This method returns the string reputation counter times. Syntax
 select repeat(str, count); Example 1
 
select repeat('TheDeveloperBlog ', 4);
Output:   Example 2
 
select repeat('mysql ', 2);
Output:   
Next TopicMySQL String
 |