Fonction MySQL REPEAT()
Exemple
Répétez une chaîne 3 fois :
SELECT REPEAT("SQL Tutorial", 3);
Définition et utilisation
La fonction REPEAT() répète une chaîne autant de fois que spécifié.
Syntaxe
REPEAT(string, number)
Valeurs des paramètres
Parameter | Description |
---|---|
string | Required. The string to repeat |
number | Required. The number of times to repeat the string |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Répétez le texte dans CustomerName 2 fois :
SELECT REPEAT(CustomerName,
2)
FROM Customers;
Exemple
Répétez la chaîne 0 fois :
SELECT REPEAT("SQL Tutorial", 0);