這篇文章主要介紹數(shù)據(jù)庫中如何一條語句刪除多張表,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)于2013年開始,先為路橋等服務建站,路橋等地企業(yè),進行企業(yè)商務咨詢服務。為路橋企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。
第一種方法:
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;
以上是“數(shù)據(jù)庫中如何一條語句刪除多張表”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!