Funkce MySQL RPAD().
Příklad
Doplňte řetězec pravým tlačítkem "ABC" na celkovou délku 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definice a použití
Funkce RPAD() doplní řetězec pravým tlačítkem na určitou délku jiným řetězcem.
Poznámka: Podívejte se také na funkci LPAD() .
Syntax
RPAD(string,
length, rpad_string)
Hodnoty parametrů
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 |
Technické údaje
Pracuje v: | Od MySQL 4.0 |
---|
Další příklady
Příklad
Text v „CustomerName“ vložte pravým tlačítkem myši s „ABC“ na celkovou délku 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;