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. Syntaxselect repeat(str, count); Example 1select repeat('TheDeveloperBlog ', 4); Output: Example 2select repeat('mysql ', 2); Output:
Next TopicMySQL String
|