oracle 删除当前用户下多个表

1.执行Sql语句:

select 'drop table '||table_name||';' 
from cat 
where table_type='TABLE' 

可查询到当前用户下所有的表,如图:

2.执行这些删除语句

原文地址:https://www.cnblogs.com/yf2011/p/3465040.html