
oracle
还是要努力啊
17年11月实习
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ORACLE MERGE INTO DELETE
ORACLE MERGE INTO DELETE注意源表和目标表数据都要唯一merge into PERSONCERTIFICATEBAK busing (select ids from person_cer_dele ) uon (b.id = u.ids)when matched then update set b.personguid = b.personguiddelet...原创 2019-08-14 10:38:39 · 2391 阅读 · 0 评论 -
oracle sql语句索引使用情况 查询
生成执行计划explain plan for select * from xxxx where xxx = xxx;查看索引使用明细select * from table(dbms_xplan.display);原创 2019-05-17 09:52:20 · 2674 阅读 · 0 评论