Função MySQL RTRIM()
Exemplo
Remova os espaços à direita de uma string:
SELECT RTRIM("SQL Tutorial ") AS RightTrimmedString;
Definição e uso
A função RTRIM() remove espaços à direita de uma string.
Sintaxe
RTRIM(string)
Valores de parâmetro
Parameter | Description |
---|---|
string | Required. The string to remove trailing spaces from |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|