May 2005
Intermediate to advanced
352 pages
14h 39m
English
REPEAT( )
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 or equal to 0. It returns NULL if either argument is NULL.
SELECT REPEAT('Urgent! ', 3)
AS 'Warning Message';Read now
Unlock full access