Funkce MySQL REVERSE() .
Příklad
Obrátit řetězec:
SELECT REVERSE("SQL Tutorial");
Definice a použití
Funkce REVERSE() obrátí řetězec a vrátí výsledek.
Syntax
REVERSE(string)
Hodnoty parametrů
Parameter | Description |
---|---|
string | Required. The string to reverse |
Technické údaje
Pracuje v: | Od MySQL 4.0 |
---|
Další příklady
Příklad
Otočte text v CustomerName:
SELECT REVERSE(CustomerName)
FROM Customers;