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

     

  • 相关阅读:
    c#可以做什么
    C#是否快被年代所筛选?
    在.NET程序中,C#办法可用来封装代码
    关于程序员的小故事
    码农需了解的代码编写标准
    关于HTML代码的技巧
    分析一波编程语言的前景
    彻底解决Linux索引节点(inode)占用率高的告警
    Python29之字符str与字节bytes
    Python28之文件1
  • 原文地址:https://www.cnblogs.com/tomatoes-/p/5971003.html
Copyright © 2011-2022 走看看