select语句非常慢

时间:2012-11-08 11:41:07

标签: ios sqlite

我正在创建4个表格并在之后从中进行选择。选择适用于前3个选择语句,但第4个选项在iPhone模拟器上大约需要10秒,在sqlite3控制台上大约需要5秒。 我在iPhone模拟器上得到0结果,但在控制台上得到1。但是在我解决了性能问题之后,我想解决这个问题。

我读了一些关于索引的内容以及它们如何提高性能,但我不知道如何在我的代码中实现它们。

sql0 = [[NSString alloc]initWithFormat:@"
create table v%i
as select id_produkt
from v%i natural join produkt_eigenschaft 
where id_eigenschaft = 
(select id_eigenschaft from eigenschaft where at = '%@')",counter,counter-1,selectedStringItem];

之后:

NSString *sqleig = [[NSString alloc]initWithFormat:@"
select at 
from eigenschaft 
where id_eigenschaft IN 
(select distinct id_eigenschaft
from produkt_eigenschaft
where id_produkt IN (select * from v%i)) 
AND rubrik = '%i'",counter-1, [sender tag] + 1];

为什么这句话的执行速度如此之慢?我该如何解决? 提前谢谢。

编辑:解释查询计划和.schema

explain query plan create table v3 as select id_produkt from v2 natural join produkt_eigenschaft where id_eigenschaft = (select id_eigenschaft from eigenschaft where at = '101-170');
0|0|1|SCAN TABLE produkt_eigenschaft (~100000 rows)
0|0|0|EXECUTE SCALAR SUBQUERY 1
1|0|0|SEARCH TABLE eigenschaft USING AUTOMATIC COVERING INDEX (at=?) (~7 rows)
0|1|0|SEARCH TABLE v2 USING AUTOMATIC COVERING INDEX (id_produkt=?) (~7 rows)

explain query plan select at from eigenschaft where id_eigenschaft IN (select distinct id_eigenschaft from produkt_eigenschaft where id_produkt IN (select * from v3)) AND rubrik = '5';
0|0|0|SCAN TABLE eigenschaft (~10000 rows)
0|0|0|EXECUTE LIST SUBQUERY 1
1|0|0|SCAN TABLE produkt_eigenschaft (~100000 rows)
1|0|0|EXECUTE LIST SUBQUERY 2
2|0|0|SCAN TABLE v3 (~1000000 rows)
1|0|0|USE TEMP B-TREE FOR DISTINCT



CREATE TABLE eigenschaft (id_eigenschaft integer,rubrik integer,en text,at text,ba text,bg text,hr text,cz text,hu text,pl text,ro text,ru text,rs text,sk text,si text);
CREATE TABLE farbe (id_farbe integer,hexcode text,farbton integer,farbname text);
CREATE TABLE produkt (id_produkt integer,code text,pdf_link text,image_link text,image_small blob,link text,en text,at text,ba text,bg text,hr text,cz text,hu text,pl text,ro text,ru text,rs text,sk text,si text,active integer);
CREATE TABLE produkt_eigenschaft (id_produkt integer,id_eigenschaft integer);
CREATE TABLE produkt_farbe (id_produkt integer,id_farbe integer);
CREATE TABLE produkt_surface (id_surface integer,id_produkt integer,image_link text);
CREATE TABLE produkt_text (id_produkt integer,en text,at text,ba text,bg text,hr text,cz text,hu text,pl text,ro text,ru text,rs text,sk text,si text);
CREATE TABLE rubrik (id integer,en text,at text,ba text,bg text,hr text,cz text,hu text,pl text,ro text,ru text,rs text,sk text,si text);
CREATE TABLE v0(id_produkt INT);
CREATE TABLE v1(id_produkt INT);
CREATE TABLE v2(id_produkt INT);
CREATE TABLE v3(id_produkt INT);

1 个答案:

答案 0 :(得分:0)

用索引解决了它。

create index i on produkt_eigenschaft (id_eigenschaft)

在选择

之前调用一次