select substr( '1234567890', 5 )
SQL> SQL> SQL> select substr( '1234567890', 5 ) 2 from dual 3 / SUBSTR ------ 567890 1 row selected. SQL> SQL> --