Oracle 学习----:Oracle删除表时报错:表或视图不存在
表明明存在,但是删除时却报错:表或视图不存在。
可能的原因之一是表名包含了小写,可以用双引号包含表名通过drop命令来删除,
如下所示:
drop table "tmp_ST" ;
drop table "tPeople";

更多精彩
表明明存在,但是删除时却报错:表或视图不存在。
可能的原因之一是表名包含了小写,可以用双引号包含表名通过drop命令来删除,
如下所示:
drop table "tmp_ST" ;
drop table "tPeople";