zoukankan      html  css  js  c++  java
  • 【测试】使用hr用户下的employees和departments表写一条SQL语句,(MG连接)

    SQL> select * from employees d, departments t where d.department_id=t.department_id;
    
    106 rows selected.
    
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 1343509718
    
    --------------------------------------------------------------------------------
    ------------
    
    | Id  | Operation                    | Name        | Rows  | Bytes | Cost (%CPU)
    | Time     |
    
    --------------------------------------------------------------------------------
    ------------
    
    |   0 | SELECT STATEMENT             |             |   106 |  9540 |     6  (17)
    | 00:00:01 |
    
    |   1 |  MERGE JOIN                  |             |   106 |  9540 |     6  (17)
    | 00:00:01 |
    
    |   2 |   TABLE ACCESS BY INDEX ROWID| DEPARTMENTS |    27 |   567 |     2   (0)
    | 00:00:01 |
    
    |   3 |    INDEX FULL SCAN           | DEPT_ID_PK  |    27 |       |     1   (0)
    | 00:00:01 |
    
    |*  4 |   SORT JOIN                  |             |   107 |  7383 |     4  (25)
    | 00:00:01 |
    
    |   5 |    TABLE ACCESS FULL         | EMPLOYEES   |   107 |  7383 |     3   (0)
    | 00:00:01 |
    
    --------------------------------------------------------------------------------
    ------------
    
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       4 - access("D"."DEPARTMENT_ID"="T"."DEPARTMENT_ID")
           filter("D"."DEPARTMENT_ID"="T"."DEPARTMENT_ID")
    
    
    Statistics
    ----------------------------------------------------------
              8  recursive calls
              0  db block gets
             20  consistent gets
              0  physical reads

     

  • 相关阅读:
    jsonp跨域请求
    jQuery之异步Ajax请求使用
    table表格cellspacing与cellpadding属性
    常用正则匹配
    插入数据显示 Duplicate entry '4913' for key 'user_id'
    事件驱动模型 IO多路复用 阻塞IO与非阻塞IO select epool
    python 协程
    python 进程 线程
    python 并发socketserver模块
    python 网络 socket
  • 原文地址:https://www.cnblogs.com/tomatoes-/p/5971003.html
Copyright © 2011-2022 走看看