ASCII
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 │
└────┘
Returns the ASCII code of the first character in a string.
func.ascii(<str>)
func.ascii('A')
┌────┐
│ 65 │
└────┘
ASCII(<str>)
SELECT ASCII('A');
┌────┐
│ 65 │
└────┘