CHAR_LENGTH (Lakehouse v2)
Returns the number of characters in a string.
Analyze Syntax
Section titled “Analyze Syntax”func.char_length(<str>)Analyze Examples
Section titled “Analyze Examples”func.char_length('hello world')
┌────┐│ 11 │└────┘SQL Syntax
Section titled “SQL Syntax”CHAR_LENGTH(<str>)SQL Examples
Section titled “SQL Examples”SELECT CHAR_LENGTH('hello world');
┌────┐│ 11 │└────┘