REVERSE
Description
REVERSE
is a row function that returns the characters of a string value in the opposite order.Syntax
REVERSE
(string_expression
)Return Value
Returns one value per row of type
TEXT
.Input Parameters
- string_expression
- Required. The name of a field or expression of typeTEXT(or a literal string).
Examples
Return the string
123 Main Street
in reverse order:REVERSE("123 Main Street")
Returns
teertS niaM 321
.