RTRIM
Removes trailing whitespace or specified characters from a string.
Analyze Syntax
func.rtrim(<str>)
Analyze Examples
func.rtrim('hello ')
┌─────────┐
│ 'hello' │
└─────────┘
SQL Syntax
RTRIM(<str>)
SQL Examples
SELECT RTRIM('hello ');
┌───────┐
│ hello │
└───────┘