select 1 from all_tables where table_name=tb_name

解决方案 »

  1.   

    从dba_/all_/user_tables
      dba_/all_/user_objects
    中都可以获取
      

  2.   

    penitent(只取一瓢) 都说全了!
      

  3.   

    还有两个同义词: tab和cat
      

  4.   

    从dba_/all_/user_tables
      dba_/all_/user_objects
    中都可以获取
    我没有看懂了!
      

  5.   

    他的意思是用下面三种都行:
    select count(*) from dba_tables where TABLE_NAME = '表名'
    select count(*) from all_tables where TABLE_NAME = '表名'
    select count(*) from user_tables where TABLE_NAME = '表名'注意表名大小写。