Course
Simulator
More
Premium
Log in
SQL Function Reference
Functions
CHAR
CHAR
Returns a string created by concatenating a sequence of ASCII codes
MySQL
CHAR
(
num
,
[
num
,
]
.
.
.
)
num
Numeric ASCII code to return a character
Examples
MySQL
SELECT
CHAR
(
72
,
105
)
;