oracle删除表 1.删除表结构和数据 drop table "test" 2.只删除表数据 1.效率高,释放空间 truncate table "test" 2.效率低,不释放空间 delete from "test"