Função MySQL LPAD()
Exemplo
Preencha a string com "ABC" à esquerda, para um comprimento total de 20:
SELECT LPAD("SQL Tutorial",
20, "ABC");
Definição e uso
A função LPAD() preenche uma string com outra string, até um certo comprimento.
Nota: Veja também a função RPAD() .
Sintaxe
LPAD(string,
length, lpad_string)
Valores de parâmetro
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 |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Preencha com o lado esquerdo o texto em "CustomerName" com "ABC", para um comprimento total de 30:
SELECT LPAD(CustomerName, 30, "ABC") AS LeftPadCustomerName
FROM Customers;