Funkcja MySQL RPAD()
Przykład
Prawym dopełnieniem struny napisem „ABC”, do całkowitej długości 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definicja i użycie
Funkcja RPAD() dopełnia napis po prawej stronie innym napisem o określonej długości.
Uwaga: Spójrz także na funkcję LPAD() .
Składnia
RPAD(string,
length, rpad_string)
Wartości parametrów
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 |
Szczegóły techniczne
Pracuje w: | Z MySQL 4.0 |
---|
Więcej przykładów
Przykład
Dopełnij tekst w polu „Nazwa klienta” wpisem „ABC” do całkowitej długości 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;