Funzione MySQL REPEAT()
Esempio
Ripetere una stringa 3 volte:
SELECT REPEAT("SQL Tutorial", 3);
Definizione e utilizzo
La funzione REPEAT() ripete una stringa tutte le volte specificate.
Sintassi
REPEAT(string, number)
Valori dei parametri
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Dettagli tecnici
Funziona in: | Da MySQL 4.0 |
---|
Altri esempi
Esempio
Ripeti il testo in CustomerName 2 volte:
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Esempio
Ripeti la stringa 0 volte:
SELECT REPEAT("SQL Tutorial", 0);