摘要:
主要的表连接类型: 嵌套循环 哈希连接 排序合并 各种连接类型的差异: 访问次数: 嵌套循环:驱动表查询n条记录,被驱动表访问n次。 SQL> create table t1(id number not null,n number,contents varchar2(4000));
Table cr... 阅读全文
摘要:
位图索引: 统计条数奋勇夺冠: SQL> drop table t purge; Table dropped. SQL> create table t as select * from dba_objects; Table created. SQL> insert into t select * from t; 2314432 rows created.
... 阅读全文