reverse()

用于反转字符串的函数

reverse() 是一个系统函数,用于反转提供的字符串中字符的顺序。

reverse()PostgreSQL 9.1 中添加。

使用

reverse ( text ) → text

更改历史记录

示例

reverse() 的基本用法示例

postgres=# SELECT reverse('foobar');
 reverse 
---------
 raboof
(1 row)

使用非拉丁字符集

postgres=# SELECT reverse('ほげほげ');
 reverse  
----------
 げほげほ
(1 row)

类别

字符串操作系统函数

反馈

提交有关 "reverse()" 的任何意见、建议或更正 此处.