select * from dba_tables

解决方案 »

  1.   

    select * from tab 
    or
    select * from user_tables
      

  2.   

    select * from tab返回表和试图
      

  3.   

    select table_name from all_tables where table_name like "?"
      

  4.   

    详细的解释是这样的
    ALL_OBJECTS                    用户可访问的对象
    DBA_OBJECTS                    数据库中所有对象
    USER_OBJECTS                   用户的对象ALL_TABLES                    用户可访问的表
    DBA_TABLES                    数据库中所有表
    USER_TABLES                   用户的表