CHR Function

Description

The CHR function returns a character that corresponds to the return value of the expression specified as an argument. It returns 0 if it exceeds range of character code.

Syntax

CHR( number_operand )

Example

SELECT CHR(68) || CHR(68-2);

   chr(68)|| chr(68-2)

======================

  'DB'