Oracle® TimesTen In-Memory Database SQL Reference Release 11.2.1 Part Number E13070-03 |
|
|
View PDF |
The NCHR function returns the character having the specified Unicode value.
SQL syntax
NCHR(n)
Parameters
NCHR has the parameter:
Parameter | Description |
---|---|
n |
The specified Unicode value. The character having this Unicode value is returned. The result is of type NVARCHAR2. |
The following example returns the NCHAR character 187:
Command> SELECT NCHR(187) FROM dual; < > > 1 row found.