MS Access StrReverse() Function

The StrReverse() function in MS Access reverses the order of characters in a string. This simple yet useful function can be handy for various text manipulation tasks.



StrReverse(): Definition and Usage

This function takes a string as input and returns a new string with the characters in reversed order. It's a straightforward way to flip the sequence of characters in a string.

Syntax

Syntax

StrReverse(string)
      

Parameter Values

Parameter Description
string The string you want to reverse. This is required.

Example

Reversing a String

This example reverses the string "SQL Tutorial".

Syntax

SELECT StrReverse("SQL Tutorial") AS StringReverse;
      
Output

lairotuT LQS