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()" 的评论、建议或更正 在此