MySQL REVERSE() 函數(shù)可用于反轉(zhuǎn)字符串。下面的例子將演示它 –
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)
登錄后復(fù)制
以上就是MySQL 中的哪個(gè)函數(shù)用于反轉(zhuǎn)特定字符串?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!