Fonction MySQL LPAD()
Exemple
Remplir à gauche la chaîne avec "ABC", jusqu'à une longueur totale de 20 :
SELECT LPAD("SQL Tutorial",
20, "ABC");
Définition et utilisation
La fonction LPAD() remplit à gauche une chaîne avec une autre chaîne, jusqu'à une certaine longueur.
Remarque : Regardez également la fonction RPAD() .
Syntaxe
LPAD(string,
length, lpad_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 left-padded |
lpad_string | Required. The string to left-pad to string |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Complétez à gauche le texte dans "CustomerName" avec "ABC", jusqu'à une longueur totale de 30 :
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;