SQL Server REVERSE() 函数

实例

反转一个字符串:

  1. SELECT REVERSE('SQL Tutorial');

定义与用法

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


语法

  1. REVERSE( string )

参数值

参数描述
string 必填。要反转的字符串

技术细节

适用版本:SQL Server(从 2008 开始)、Azure SQL数据库、Azure SQL数据仓库、并行数据仓库

更多实例

实例

反转 CustomerName 列中的文本:

  1. SELECT REVERSE(CustomerName)
  2. FROM Customers;

分类导航