目录

MySQL REVERSE() 函数

示例

反转字符串:

SELECT REVERSE("SQL Tutorial");
亲自试一试 »

定义和用法

REVERSE() 函数反转字符串并返回结果。

语法

REVERSE( string)

参数值

Parameter Description
string Required. The string to reverse

技术细节

工作于: 从 MySQL 4.0 开始

更多示例

示例

反转 CustomerName 中的文本:

SELECT REVERSE(CustomerName)
FROM Customers;
亲自试一试 »