oracle、sql developer 删除某用户下所有的表

1、在sql developer内

  1.  
    select 'drop table "'||table_name||'";'
  2.  
    from cat
  3.  
    where table_type='TABLE'

2、将结果集拷贝到 sql窗口里执行

原文出处:https://blog.csdn.net/xiaoliuyiting/article/details/84288873

原文地址:https://www.cnblogs.com/sucretan2010/p/11406591.html