Syntax
Parameters
| Parameter | Description | Supported Input Types |
|---|---|---|
<expression> | The string to be reversed. | TEXT |
Return Type
TEXT
Examples
Reverse a simple text string:'nospmise'
Reverse a string containing emoji characters:
'🌍👋'Reference material for REVERSE function
REVERSE(<expression>)
| Parameter | Description | Supported Input Types |
|---|---|---|
<expression> | The string to be reversed. | TEXT |
TEXT
SELECT REVERSE('esimpson');
'nospmise'
Reverse a string containing emoji characters:
SELECT REVERSE('👋🌍');
'🌍👋'Was this page helpful?