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