REVERSE

Reverses a string.

Analyze Syntax

func.reverse(<str>)

Analyze Examples

func.reverse('hello')

┌─────────┐
 'olleh'  
└─────────┘

SQL Syntax

REVERSE(<str>)

SQL Examples

SELECT REVERSE('hello');

┌───────┐
 olleh  
└───────┘