您好,登录后才能下订单哦!
这篇文章主要介绍数据库中如何一条语句删除多张表,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
第一种方法:
SCOTT@PROD> select 'drop table '|| table_name ||';' from user_tables;
'DROPTABLE'||TABLE_NAME||';'
------------------------------------------
drop table DEPT;
drop table EMP;
drop table BONUS;
drop table SALGRADE;
drop table T1;
drop table DEPT1;
drop table EMP1;
drop table TBS1;
drop table T;
drop table T_MERGE;
drop table DEPT_M;
drop table EMP1_EXT;
drop table INV_HISTORY;
drop table T2;
14 rows selected.
第二种方法:
begin
for rec in (select table_name
from user_tables --可以改为all_name
where table_name like '%TEST%' --改表的名字
)
loop
execute immediate 'drop table '||rec.table_name;
end loop;
end;
以上是“数据库中如何一条语句删除多张表”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。