MySQL RPAD() Functie
Voorbeeld
Rechts-pad de string met "ABC", tot een totale lengte van 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definitie en gebruik
De functie RPAD() vult een tekenreeks met een andere tekenreeks op de rechtermuisknop aan, tot een bepaalde lengte.
Opmerking: kijk ook naar de functie LPAD() .
Syntaxis
RPAD(string,
length, rpad_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 right-padded |
rpad_string | Required. The string to right-pad to string |
Technische details
Werkt in: | Van MySQL 4.0 |
---|
Meer voorbeelden
Voorbeeld
Rechts-pad de tekst in "Klantnaam" met "ABC", tot een totale lengte van 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;