ASCII

Description

Syntax

INT AXES (WARCHAR STR)

Returns the ASCII code corresponding to the first character of the string

example

  1. mysql> select ascii('1');
  2. +------------+
  3. | ascii('1') |
  4. +------------+
  5. | 49 |
  6. +------------+
  7. mysql> select ascii('234');
  8. +--------------+
  9. | ascii('234') |
  10. +--------------+
  11. | 50 |
  12. +--------------+

keyword

ASCII