inmeditation
SQL> explain plan for select * from emp;
Explained

SQL> select * from table(dbms_xplan.display());
PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------
Plan hash value: 3956160932
--------------------------------------------------------------------------
| Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |    14 |   532 |     3   (0)| 00:00:01 |
|   1 |  TABLE ACCESS FULL| EMP  |    14 |   532 |     3   (0)| 00:00:01 |
--------------------------------------------------------------------------
8 rows selected

plsql developer可以通过f5进行查看

分类:

技术点:

相关文章:

  • 2021-12-23
  • 2021-10-24
  • 2021-12-23
  • 2021-12-23
  • 2021-09-14
  • 2021-11-26
  • 2021-12-23
  • 2021-07-24
猜你喜欢
  • 2021-10-06
  • 2021-12-23
  • 2021-08-03
  • 2022-01-07
  • 2021-12-23
  • 2021-12-23
相关资源
相似解决方案