|
原帖由 zergduan 于 2008-3-24 15:56 发表 ![]()
版主大人,刚才我和你想得一样的但是
SQL> create table "Test" as select * from v$session;
Table created
SQL> desc "Test"
Object "Test" does not exist.
所以我在前面的帖子里写"sorry错了"
SQL> create table "Test" (id number);
表已创建。
SQL> select * from test;
select * from test
*
ERROR 位于第 1 行:
ORA-00942: 表或视图不存在
SQL> desc test;
ERROR:
ORA-04043: 对象 test 不存在
SQL> desc "Test"
名称 是否为空? 类型
----------------------------------------- -------- ----------------------------
ID NUMBER
为什么我的可以呢? |
|