baihongyu.com
博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态sql语句来删除用户下的对象
阅读量:
6639 次
发布时间:
2019-06-25
本文共 388 字,大约阅读时间需要 1 分钟。
写动态sql,下面是删表的例子
一:
spool droptable.sql
select 'drop table '||table_name||';' from user_tables;
spool off
start droptable.sql
二:
create or replace procedure pro_droptable is
cursor cur is select table_name from user_tables;
drop_sql varchar2(1000);
begin
for tbname in cur loop
begin
drop_sql:='drop table '||tbname.table_name;
execute immediate drop_sql;
end;
end loop;
end pro_droptable;
转载地址:http://xapvo.baihongyu.com/
你可能感兴趣的文章
Android 面试系列 Dn.2---- 广播?
查看>>
用Node.js写爬虫,撸羞羞的图片
查看>>
iOS定时器(时间不在于你拥有多少,而在于你怎样使用)
查看>>
JavaScript 算法之复杂度分析
查看>>
玩转webpack4
查看>>
分布式系统:Lamport 逻辑时钟
查看>>
css代码规范工具stylelint
查看>>
传统加密技术
查看>>
把 14 亿中国人都拉到一个微信群在技术上能实现吗?
查看>>
Ubuntu的web服务器搭建系列之MySQL(JDK+Tomcat+MySQL+Nginx+Redis+NodeJS)
查看>>
[译] 为什么我更喜欢对象而不是switch语句
查看>>
设计模式6大原则
查看>>
NSAttributeString使用介绍(含常用Attribute键值对照表)
查看>>
2135亿!2018双11阿里数据库技术战报新鲜出炉
查看>>
Vue.js开发移动端APP
查看>>
JEESZ 模块开发
查看>>
基于django的视频点播网站开发-step6-个人中心功能
查看>>
彭于晏牵手英得尔T20,这才是品质自驾游正确打开方式
查看>>
[SceneKit专题]19-MagicaVoxel的使用,3D体素网格建模
查看>>
在Vue项目里面使用d3.js
查看>>