select * from user_tables;

解决方案 »

  1.   

    select table_name from user_tables
      

  2.   

    select table_name from user_tables where owner='XXXX'
      

  3.   

    select table_name from all_tables;所有表
    select table_name from user_tables;所有用户表
    或select tname from tab;
      

  4.   

    select table_name from user_all_tables;
      

  5.   

    user_tables
    all_tables
    dba_tables
    cat
    tab
      

  6.   

    SELECT * FROM ALL_TABLES
    WHERE OWNER<>'SYS'
      

  7.   

    SELECT * FROM ALL_TABLES
    WHERE OWNER=USERNAME
      

  8.   

    select * from all_objects
      

  9.   

    select table_name from dba_tables where owner=username;