select table_name from dba_tables;

解决方案 »

  1.   

    select * from dba_tables;
    select * from user_tables;
    select * from all_tables;
      

  2.   

    select * from tab where TABTYPE='TABLE';
      

  3.   

    select * from user_tables;
      

  4.   


      select table_name from user_tables;
      ------------------------------------
       查看当前登陆用户所拥有的表  select table_name from all_tables where OWNER='ABC'
      -------------------------------------------------------
       查看用户'ABC'拥有的表
      

  5.   

    本用户的表:
    select * from cat;

    select * from tab;