MySQL REVERSE() 函數可用來反轉字串。下面的例子將會示範它 -
mysql> Select REVERSE('Tutorialspoint'); +---------------------------+ | REVERSE('Tutorialspoint') | +---------------------------+ | 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)
以上是MySQL 中的哪個函數用於反轉特定字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!