REPEAT()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
Returns a string consisting of the string str repeated count times. If count is less than 1, returns an empty string. Returns NULL if str or count are NULL.
EXAMPLES
SELECT REPEAT('Sql', 3);
+------------------+
| REPEAT('Sql', 3) |
+------------------+
| SqlSqlSql |
+------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.