这篇文章主要介绍数据库中如何一条语句删除多张表,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
第一种方法:
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
execu免费主机域名te immediate ‘drop table ‘||rec.table_name;
end loop;
end;
以上是“数据库中如何一条语句删除多张表”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注云技术行业资讯频道!
这篇文章主要为大家展示了“DG归档日志断档时间过长怎么处理”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“DG归档日志断档时间过长怎么处理”这篇文章吧。 1、备库操作(1)取消日志的应用ALTER DATABASE …