TO_MULTI_BYTE(x): Converts the single-byte characters in x to their corresponding multi-byte characters
SQL>
SQL> --TO_MULTI_BYTE(x): Converts the single-byte characters in x to their corresponding multi-byte characters. The return type is the same as the type for x.
SQL>
SQL> select to_multi_byte('www.java2s.com')from dual;
TO_MULTI_BYTE(
--------------
www.java2s.com
SQL>
Related examples in the same category