oracle 删除当前用户下多个表

1.执行Sql语句:

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

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

2.执行这些删除语句

 

posted @ 2013-12-09 11:41  J.Y  阅读(240)  评论(0编辑  收藏  举报