declare
cursor c1 is
select table_name from user_tables where table_name like '%EQ_DEFECTMANAGE%';
begin
for c2 in c1 loop
execute immediate 'drop table ' || c2.table_name;
end loop;
end;
批量删除表的一个例子
最新推荐文章于 2021-04-07 05:10:58 发布
8万+

被折叠的 条评论
为什么被折叠?



