这样就行了
select * from "0001_abcd";

解决方案 »

  1.   

    参考以下例子吧,要加双引号:SQL> create table 011_ora(a number);create table 011_ora(a number)ORA-00903: 无效表名SQL> create table "011_ora"(a number);Table createdSQL> select * from 011_ora;select * from 011_oraORA-00903: 无效表名SQL> select * from "011_ora";A
    ----------
      

  2.   

    当删除该表时,也要用双引号drop table "0001_abcd";
      

  3.   

    不对,加“”我早就试过了,不行,那只对小写的表名有作用。HELP!
      

  4.   

    SQL> CREATE TABLE "123TEST" (A VARCHAR2(20));Table createdSQL> desc 123test;
    Name Type         Nullable Default Comments 
    ---- ------------ -------- ------- -------- 
    A    VARCHAR2(20) Y          SQL> drop table "123TEST";Table dropped