CHAR() returns a string consisting of the characters given by the code values of those integers : CHAR : String Functions MySQL TUTORIALS


MySQL TUTORIALS » String Functions » CHAR »

 

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|
+-----------------+
|                 |
+-----------------+
row in set (0.00 sec)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo String Functions
» CHAR