Oracle PL/SQL/Char Functions/ASCIISTR

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

asciistr("4321")

   <source lang="sql">

SQL> select asciistr("4321") from dual; ASCI


4321 SQL>

      </source>
   
  


ASCIISTR(x): Converts x to an ASCII string, where x may be a string in any character set

   <source lang="sql">

SQL> --ASCIISTR(x): Converts x to an ASCII string, where x may be a string in any character set. SQL> SQL> select asciistr(1234) from dual; ASCI


1234 SQL>

      </source>