ASCII (Lakehouse v2)
Returns the ASCII code of the first character in a string.
Analyze Syntax
Section titled “Analyze Syntax”func.ascii(<str>)Analyze Examples
Section titled “Analyze Examples”func.ascii('A')
┌────┐│ 65 │└────┘SQL Syntax
Section titled “SQL Syntax”ASCII(<str>)SQL Examples
Section titled “SQL Examples”SELECT ASCII('A');
┌────┐│ 65 │└────┘