反转一个字符串:
SELECT REVERSE("SQL Tutorial");
REVERSE() 函数反转字符串并返回结果。
REVERSE()
REVERSE( string )
反转 CustomerName 列的文本:
SELECT REVERSE(CustomerName)FROM Customers;
SELECT REVERSE(CustomerName)
FROM Customers;