您好,登錄后才能下訂單哦!
這篇文章主要介紹數據庫中如何一條語句刪除多張表,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
第一種方法:
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。