MySQL RPAD() Funksie
Voorbeeld
Regs-pad die string met "ABC", tot 'n totale lengte van 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definisie en gebruik
Die RPAD()-funksie voeg 'n string regs met 'n ander string, tot 'n sekere lengte.
Let wel: Kyk ook na die LPAD() funksie.
Sintaksis
RPAD(string,
length, rpad_string)
Parameterwaardes
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 |
Tegniese besonderhede
Werk in: | Van MySQL 4.0 |
---|
Meer voorbeelde
Voorbeeld
Regsblokkeer die teks in "CustomerName" met "ABC", tot 'n totale lengte van 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;