MySQL REVERSE() Fonksiyonu
Örnek
Bir dizeyi tersine çevir:
SELECT REVERSE("SQL Tutorial");
Tanım ve Kullanım
REVERSE() işlevi bir dizeyi tersine çevirir ve sonucu döndürür.
Sözdizimi
REVERSE(string)
Parametre Değerleri
Parameter | Description |
---|---|
string | Required. The string to reverse |
Teknik detaylar
Çalışır: | MySQL 4.0'dan |
---|
Daha fazla örnek
Örnek
MüşteriAdı içindeki metni ters çevirin:
SELECT REVERSE(CustomerName)
FROM Customers;