MySQL中哪个函数用于反转特定字符串?

MySQLREVERSE()函数可用于反转字符串。以下示例将演示它-

mysql> Select REVERSE('Nhooo');
+---------------------------+
| REVERSE('Nhooo') |
+---------------------------+
| tniopslairotuT            |
+---------------------------+
1 row in set (0.00 sec)

mysql> Select Reverse('10-11-12');
+---------------------+
| Reverse('10-11-12') |
+---------------------+
| 21-11-01            |
+---------------------+
1 row in set (0.00 sec)
猜你喜欢