补充一下 ,我在PL/SQL下的 SQL WINDOW 下运行 select   name  from   sysobjects   where   xtype   =   'u' 报错的

解决方案 »

  1.   

    select table_name from all_tables
      

  2.   

    select table_name from all_tables  谢谢
     我如果要 找 table_name 包含 字母 C 的要怎么写~~~
      

  3.   

    //含对用户可用的表的描述
    select * from user_all_tables
      

  4.   

    select table_name from all_tables  
    where table_name like '%C%'
      

  5.   

    select table_name from all_tables where decode(instr(table_name,'C',1,1),0,0,1)=1
    不过用like跟方便一些