Synopsis
REPEAT(string, count)
This function returns the string given in the first argument
of the function as many times as specified in the second argument. It
returns an empty string if count is less
than 1. It returns NULL if either argument is NULL. Here is an
example:
SELECT REPEAT('Urgent! ', 3)
AS 'Warning Message';