ASCII
Learn how to use the ASCII string function in PlaidCloud Lakehouse. Returns the ASCII code of the first character in a string - with syntax and examples.
Returns the ASCII code of the first character in a string.
Analyze Syntax
func.ascii(<str>)
Analyze Examples
func.ascii('A')
┌────┐
│ 65 │
└────┘
SQL Syntax
ASCII(<str>)
SQL Examples
SELECT ASCII('A');
┌────┐
│ 65 │
└────┘