CHAR
(CHAR(
integer
))
Converts an ASCII integer value to its corresponding character. This is not the same as the CHAR data type.
In the following example, the value of
vchar1
is
A
and the value of
vchar2
is
a
.
SET VAR vchar1 = (CHAR(65))
SET VAR vchar2 = (CHAR(97))