Oracle® OLAP DML Reference 10g Release 2 (10.2) Part Number B14346-03 |
|
|
View PDF |
The CHR function converts an integer value (or any value that can be implicitly converted to an integer value) into a character.
Note:
Use of this function results in code that is not portable between ASCII- and EBCDIC-based machine architectures.See also:
The SQLCHR
function in Oracle Database SQL Reference.Return Value
A text value. For single-byte character sets, if number
> 256
, the function returns the binary equivalent of number
MOD 256
. For multibyte character sets, number
must resolve to one entire code point. Invalid code points are not validated, and the result of specifying invalid code points is indeterminate.
Syntax
CHR(number [ USING NCHAR_CS ])
Arguments
An integer value, or any value that can be implicitly converted to an integer value.
Specifies that the function returns the value in the national character set. When you do not specify this clause, the function returns the value in the database character set.