发布网友 发布时间:2022-04-26 02:25
共1个回答
热心网友 时间:2022-04-10 01:14
执行以下查询语句:
select
'drop
table
'||table_name||';'
from
cat
where
table_type='TABLE'
将会输出一批删除表的sql语句,执行一下这些SQL语句就可以了。
如下:
declarebeginfor
i
in
(select
table_name
from
dba_tables
where
owner=:username)
loopexecute
immediate
'drop
table
'||:username||'.'||i.tablename;end
loop;end;