REVERSE (String, Lakehouse v2)
Reverses a string.
Analyze Syntax
Section titled “Analyze Syntax”func.reverse(<str>)Analyze Examples
Section titled “Analyze Examples”func.reverse('hello')
┌─────────┐│ 'olleh' │└─────────┘SQL Syntax
Section titled “SQL Syntax”REVERSE(<str>)SQL Examples
Section titled “SQL Examples”SELECT REVERSE('hello');
┌───────┐│ olleh │└───────┘