Scalar. Returns the characters responding to one or more Unicode code points.
expression
A Unicode code point. An invalid code point, 0, or NULL returns NULL.
Return
String
Integer
The following example inserts a tab into the second column of OutStream.
INSERT INTO OutStream SELECT InStream.Column1, CHR(9) FROM InStream;