STRRIGHT (Lakehouse v2)
Returns the rightmost N characters of a string. Alias for RIGHT.
Analyze Syntax
Section titled “Analyze Syntax”func.strright(<str>, <len>)Analyze Examples
Section titled “Analyze Examples”func.strright('StarRocks', 5)
┌─────────┐│ 'Rocks' │└─────────┘SQL Syntax
Section titled “SQL Syntax”STRRIGHT(<str>, <len>)SQL Examples
Section titled “SQL Examples”SELECT STRRIGHT('StarRocks', 5);
┌───────┐│ Rocks │└───────┘