如果你发现用一个普通用户创建了表,但是你发现Tables
哪里确是空的
或者执行这个select * from user_tables;
结果是空的
那么你要看下这个表是不是属于你了,不属于你的自然看不见
执行这个:
select * from all_all_tables;
。。。。
本来想说要这样写来着:
create table student
(
SID char(7) primary key not null,
Sname varchar(11) not null,
Sage number not null,
Ssex varchar(4) not null
)tablespace ZQF;
因为看到的这个
但是删了,重新用这个
create table student
(
SID char(7) primary key not null,
Sname varchar(11) not null,
Sage number not null,
Ssex varchar(4) not null
);
又有用了。。。。
搞我。。-_-
也有可能是因为之前
把ZQF
表空间脱机了原因。。。