MySQL LPAD() Functie
Voorbeeld
Linkerpad de string met "ABC", tot een totale lengte van 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definitie en gebruik
De functie LPAD() vult een string met een andere string naar een bepaalde lengte.
Opmerking: kijk ook naar de RPAD()- functie.
Syntaxis
LPAD(string,
length, lpad_string)
Parameterwaarden
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 |
Technische details
Werkt in: | Van MySQL 4.0 |
---|
Meer voorbeelden
Voorbeeld
Voer met de linkermuisknop de tekst in "Klantnaam" in met "ABC", tot een totale lengte van 30:
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;