Oracle PL/SQL/Char Functions/decompose

Материал из SQL эксперт
Перейти к: навигация, поиск

DECOMPOSE(x) Converts x to a Unicode string after decomposition in the same character set as x

SQL>
SQL> --DECOMPOSE(x) Converts x to a Unicode string after decomposition in the same character set as x.
SQL>
SQL> select decompose("Tr bien") from dual;
DECOMPO
-------
Tr bien
SQL>