Funkcja MySQL LPAD()
Przykład
Lewy ochraniacz struny z napisem „ABC”, do całkowitej długości 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definicja i użycie
Funkcja LPAD() dopełnia łańcuch z lewej strony innym łańcuchem o określonej długości.
Uwaga: Spójrz także na funkcję RPAD() .
Składnia
LPAD(string,
length, lpad_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 left-padded |
lpad_string | Required. The string to left-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 LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;