Curriculum
Course: MYSQL
Login

Curriculum

MYSQL

MySQL References

0/140
Text lesson

REPEAT

Example

Repeat the string three times:

SELECT REPEAT(“SQL Tutorial”3); 

Definition and Usage

The REPEAT() function replicates a string as many times as specified.

Syntax

REPEAT(stringnumber)

Parameter Values

Parameter

Description

string

Input required: The string that will be repeated.

number

Input required: The number of times the string will be repeated.

Technical Details

Works in: From MySQL 4.0

More Examples

Example

Duplicate the text in the CustomerName column twice.

SELECT REPEAT(CustomerName, 2)
FROM Customers; 

Example

Duplicate the string zero times.

SELECT REPEAT(“SQL Tutorial”0);