Fonction MySQL RPAD()
Exemple
Remplir à droite la chaîne avec "ABC", jusqu'à une longueur totale de 20 :
SELECT RPAD("SQL Tutorial",
20, "ABC");
Définition et utilisation
La fonction RPAD() remplit à droite une chaîne avec une autre chaîne, jusqu'à une certaine longueur.
Remarque : Regardez également la fonction LPAD() .
Syntaxe
RPAD(string,
length, rpad_string)
Valeurs des paramètres
Parameter | Description |
---|---|
string | Required. The original string. If the length of the original string is larger than the length parameter, this function removes the overfloating characters from string |
length | Required. The length of the string after it has been right-padded |
rpad_string | Required. The string to right-pad to string |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Remplissez à droite le texte dans "CustomerName" avec "ABC", jusqu'à une longueur totale de 30 :
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;