1.查询测试数据条数
bash
SQL> select count(*) from test;
COUNT(*)
----------
6
2.drop 测试表
bash
SQL> drop table test ;
Table dropped.
3.通过工具查询到在回收站中存在


4.恢复回收站中误删除表
bash
FLASHBACK TABLE TEST TO BEFORE DROP;
5.查询恢复结果
bash
SQL> select count(*) from test;
COUNT(*)
----------
6