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 is NULL.
SELECT REPEAT('MySQL', 3);
'MySQLMySQLMySQL'
SELECT REPEAT('MySQL', 3);
'MySQLMySQLMySQL'