MySQL Tutorial/String Functions/CHAR
Версия от 13:44, 26 мая 2010; (обсуждение)
CHAR() returns a string consisting of the characters given by the code values of those integers
CHAR(N,... [USING charset_name])
CHAR() interprets each argument N as an integer.
NULL values are skipped.
By default, CHAR() returns a binary string.
mysql>
mysql> SELECT CHAR(7,2,3,4,5);
+-----------------+
| CHAR(7,2,3,4,5) |
+-----------------+
| |
+-----------------+
1 row in set (0.00 sec)