Função MySQL RPAD()
Exemplo
Preencha com o botão direito a string com "ABC", para um comprimento total de 20:
SELECT RPAD("SQL Tutorial",
20, "ABC");
Definição e uso
A função RPAD() preenche uma string com outra string, até um certo comprimento.
Nota: Veja também a função LPAD() .
Sintaxe
RPAD(string,
length, rpad_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 right-padded |
rpad_string | Required. The string to right-pad to string |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Preencha com o botão direito o texto em "CustomerName" com "ABC", para um comprimento total de 30:
SELECT
RPAD(CustomerName, 30, "ABC") AS RightPadCustomerName
FROM Customers;