Converts an int ASCII code to a character.
CHAR ( integer_expression )
index
Is an integer from 0 through 255. NULL is returned if the integer expression is not in this range.
char(1)
SELECT CHAR(10) as lf;
Functions