Função MySQL REPEAT()
Exemplo
Repita uma string 3 vezes:
SELECT REPEAT("SQL Tutorial", 3);
Definição e uso
A função REPEAT() repete uma string quantas vezes forem especificadas.
Sintaxe
REPEAT(string, number)
Valores de parâmetro
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Repita o texto em CustomerName 2 vezes:
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Exemplo
Repita a string 0 vezes:
SELECT REPEAT("SQL Tutorial", 0);