REVERSE
Learn how to use the REVERSE string function in PlaidCloud Lakehouse. Reverses a string - see syntax, examples, and output.
Reverses a string.
Analyze Syntax
func.reverse(<str>)
Analyze Examples
func.reverse('hello')
┌─────────┐
│ 'olleh' │
└─────────┘
SQL Syntax
REVERSE(<str>)
SQL Examples
SELECT REVERSE('hello');
┌───────┐
│ olleh │
└───────┘