query all_objects table and subtract object_name : all_objects « System Tables Views « Oracle PL / SQL






query all_objects table and subtract object_name

  
SQL>
SQL>
SQL> select substr(object_name,1,2)
  2    from all_objects t1
  3   where rownum = 1
  4  /

SU
--
IC

SQL>
SQL>

   
  








Related examples in the same category

1.ALL_OBJECTS view combines all types of Oracle structures into one view.