当前位置:Gxlcms > 数据库问题 > 【测试】并使用scott用户下的emp表写一条SQL语句,执行计划走唯一索引

【测试】并使用scott用户下的emp表写一条SQL语句,执行计划走唯一索引

时间:2021-07-01 10:21:17 帮助过:2人阅读

set autotrace onSQL>select sal from emp where empno=7902; SAL ---------- 3000 Execution Plan ---------------------------------------------------------- Plan hash value: 2949544139 -------------------------------------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | -------------------------------------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 8 | 1 (0)| 00:00:01 | | 1 | TABLE ACCESS BY INDEX ROWID| EMP | 1 | 8 | 1 (0)| 00:00:01 | |* 2 | INDEX UNIQUE SCAN | PK_EMP | 1 | | 0 (0)| 00:00:01 | -------------------------------------------------------------------------------------- Predicate Information (identified by operation id): --------------------------------------------------- 2 - access("EMPNO"=7902)

 

【测试】并使用scott用户下的emp表写一条SQL语句,执行计划走唯一索引

标签:

人气教程排行