ENDS_WITH (Lakehouse v2)
Checks whether a string ends with a specified suffix.
Analyze Syntax
Section titled “Analyze Syntax”func.ends_with(<str>, <suffix>)Analyze Examples
Section titled “Analyze Examples”func.ends_with('hello world', 'world')
┌───┐│ 1 │└───┘SQL Syntax
Section titled “SQL Syntax”ENDS_WITH(<str>, <suffix>)SQL Examples
Section titled “SQL Examples”SELECT ENDS_WITH('hello world', 'world');
┌───┐│ 1 │└───┘