PostgreSQL索引探究
创建包含10个列(c01 - c10)的表my_table,用如下语句创建2个索引,并向表中插入6w条记录。这6w条记录的c01列,全部都是2017年04月21日的数据。 CREATE INDEX my_table_index1 ON my_table USING btree (c05,c01,c02) TABLESPACE smart_history_index;
CREATE INDEX my_table_index2 ON my_table USING btree (c01,c02,c03,c04,c05) TABLESPACE smart_history_index;
使用以下SQL1语句查询,查询时间为2分钟。 select * from my_table t1 where (select count(*) from my_table t2 where ((t1.c01 = t2.c01 ) or (t1.c01 is null and t2.c01 is null)) and ((t1.c02 = t2.c02 ) or (t1.c02 is null and t2.c02 is null)) and ((t1.c03 = t2.c03 ) or (t1.c03 is null and t2.c03 is null)) and ((t1.c04 = t2.c04 ) or (t1.c04 is null and t2.c04 is null)) and ((t1.c05 = t2.c05 ) or (t1.c05 is null and t2.c05 is null)) and ((t1.c06 = t2.c06 ) or (t1.c06 is null and t2.c06 is null)) and ((t1.c07 = t2.c07 ) or (t1.c07 is null and t2.c07 is null)) and ((t1.c08 = t2.c08 ) or (t1.c08 is null and t2.c08 is null)) and ((t1.c09 = t2.c09 ) or (t1.c09 is null and t2.c09 is null)) and ((t1.c10 = t2.c10 ) or (t1.c10 is null and t2.c10 is null)) )>1;
使用以下SQL1语句查询,查询时间为2.8秒。 select * from my_table t1 where (select count(*) from my_table t2 where ((t1.c01 = t2.c01 ) or (t1.c01 is null and t2.c01 is null)) and ((t1.c02 = t2.c02 ) or (t1.c02 is null and t2.c02 is null)) and ((t1.c03 = t2.c03 ) or (t1.c03 is null and t2.c03 is null)) and ((t1.c04 = t2.c04 ) or (t1.c04 is null and t2.c04 is null)) and ((t1.c05 = t2.c05 ) or (t1.c05 is null and t2.c05 is null)) and ((t1.c06 = t2.c06 ) or (t1.c06 is null and t2.c06 is null)) and ((t1.c07 = t2.c07 ) or (t1.c07 is null and t2.c07 is null)) and ((t1.c08 = t2.c08 ) or (t1.c08 is null and t2.c08 is null)) and ((t1.c09 = t2.c09 ) or (t1.c09 is null and t2.c09 is null)) and ((t1.c10 = t2.c10 ) or (t1.c10 is null and t2.c10 is null)) and (c01 >= '2017-04-20 00:00:00' and c01 < '2017-04-21 00:00:00') )>1 and (c01 >= '2017-04-20 00:00:00' and c01 < '2017-04-21 00:00:00');
虽然SQL2最后对于c01列的where条件并为实质上减少过滤出的数据量。但是能够显著的提高查询效率(60倍),进一步使用以下SQL3语句监视索引使用情况发现,SQL2只调用了my_table_index2,而SQL1既调用了my_table_index1也调用了my_table_index2。 select relname,indexrelname,idx_scan,idx_tup_read,idx_tup_fetch from pg_stat_user_indexes where relname = 'my_table' order by idx_scan asc,idx_tup_read asc,idx_tup_fetch asc;
显然my_table_index1肯定比my_table_index2的辨识度更高。之所以SQL优化解析器会做出这样的选择,猜测可能是因为my_table_index2中列c01处于第一个的位置,而SQL2最后的c01查询条件刚好暗示强化了解释器去选择my_table_index2。 最后说两点启示: 1.索引不能随便建,如果建的不好,不仅影响插入效率,也会影响查询效率。 2.SQL语句优化之路,任重而道远。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |