欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

执行计划探索(1)

程序员文章站 2022-03-03 19:57:37
...

一、执行一个简单的select 语句

  1. 建立测试表
SQL> create table test1 (id number ,name varchar2(50));
SQL> insert into test1 values ( 1, 'hello');
SQL> insert into test1 values ( 2, 'google');
SQL> commit;
SQL> create index pk_test on test1(id);
相关标签: 数据库优化