oracle
oracle
伊布拉西莫
思想上的强者,行动上的弱者。
展开
-
Oracle查询优化改写-笔记
《Oracle查询优化改写 技巧与案例》学习笔记。写此博文,方便以后查找使用。 第1章:单表查询 --查找空值 select * from emp where comm is null; /* * replace(1,2,3) * 1:字段,2:旧内容 ,3:新内容 */ select replace('abcdefg','a',null) from dual; ---20原创 2017-11-14 09:17:58 · 1507 阅读 · 2 评论 -
Oracle 查询表信息(字段+备注)
转载自:https://blog.csdn.net/Zhangxichao100/article/details/72519304 获取表字段: select * from user_tab_columns where Table_Name='用户表' order by column_name 获取表注释: select * from user_tab_comments ...转载 2018-08-21 11:06:18 · 13529 阅读 · 0 评论 -
oracle分区表-目录
oracle按时间创建分区表原创 2018-11-01 08:44:57 · 505 阅读 · 0 评论