Função MySQL REVERSE()
Exemplo
Inverta uma string:
SELECT REVERSE("SQL Tutorial");
Definição e uso
A função REVERSE() inverte uma string e retorna o resultado.
Sintaxe
REVERSE(string)
Valores de parâmetro
Parameter | Description |
---|---|
string | Required. The string to reverse |
Detalhes técnicos
Trabalha em: | Do MySQL 4.0 |
---|
Mais exemplos
Exemplo
Inverta o texto em CustomerName:
SELECT REVERSE(CustomerName)
FROM Customers;