千家信息网

数据库中如何一条语句删除多张表

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,这篇文章主要介绍数据库中如何一条语句删除多张表,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!第一种方法:SCOTT@PROD> select 'drop table '|| t
千家信息网最后更新 2025年01月20日数据库中如何一条语句删除多张表

这篇文章主要介绍数据库中如何一条语句删除多张表,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

第一种方法:
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;

以上是"数据库中如何一条语句删除多张表"这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注行业资讯频道!

0