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. 124; ASCII ('1') 124;
  4. +------------+
  5. | 49 |
  6. +------------+
  7. mysql > select axes ('234');
  8. +--------------+
  9. 124; ASCII ('234') 124;
  10. +--------------+
  11. | 50 |
  12. +--------------+

keyword ASCII