测试在hr用户下自行创建T1和T2表写一条SQL语句,(NL连接)
Posted Tomatoes
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测试在hr用户下自行创建T1和T2表写一条SQL语句,(NL连接)相关的知识,希望对你有一定的参考价值。
SQL> select t1.* from t1,t2 where t1.object_id=t2.object_id;
99 rows selected.
Execution Plan
----------------------------------------------------------
Plan hash value: 1506669289
--------------------------------------------------------------------------------
-------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Tim
e |
--------------------------------------------------------------------------------
-------
| 0 | SELECT STATEMENT | | 99 | 16929 | 201 (0)| 00:
00:03 |
| 1 | NESTED LOOPS | | 99 | 16929 | 201 (0)| 00:
00:03 |
| 2 | NESTED LOOPS | | 99 | 16929 | 201 (0)| 00:
00:03 |
| 3 | TABLE ACCESS FULL | T2 | 99 | 1287 | 3 (0)| 00:
00:01 |
|* 4 | INDEX RANGE SCAN | IDX_T1 | 1 | | 1 (0)| 00:
00:01 |
| 5 | TABLE ACCESS BY INDEX ROWID| T1 | 1 | 158 | 2 (0)| 00:
00:01 |
--------------------------------------------------------------------------------
-------
Predicate Information (identified by operation id):
---------------------------------------------------
4 - access("T1"."OBJECT_ID"="T2"."OBJECT_ID")
Note
-----
- dynamic sampling used for this statement (level=2)
Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
135 consistent gets
4 physical reads
0 redo size
6108 bytes sent via SQL*Net to client
589 bytes received via SQL*Net from client
8 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
99 rows processed
以上是关于测试在hr用户下自行创建T1和T2表写一条SQL语句,(NL连接)的主要内容,如果未能解决你的问题,请参考以下文章
测试使用hr用户下的employees表写一条SQL语句,执行计划走索引全扫描