select table_name from user_tables;

解决方案 »

  1.   

    select * from tab
    select * from cat
    select * from user_objects where object_type='TABLE'
      

  2.   

    select table_name from user_tables
      

  3.   

    能不能用SQL语句的到那些表属于那个用户的?
      

  4.   

    select owner||'  '||table_name from dba_tables where table_name='TEST';
      

  5.   

    select table_name from dba_tables where owner='USERNAME'注意USERNAME大写