Funkce MySQL LPAD().
Příklad
Doleva zadejte řetězec "ABC" do celkové délky 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definice a použití
Funkce LPAD() doleva doplní řetězec jiným řetězcem na určitou délku.
Poznámka: Podívejte se také na funkci RPAD() .
Syntax
LPAD(string,
length, lpad_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 left-padded |
lpad_string | Required. The string to left-pad to string |
Technické údaje
Pracuje v: | Od MySQL 4.0 |
---|
Další příklady
Příklad
Text v „CustomerName“ vložte doleva pomocí „ABC“ do celkové délky 30:
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;