Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/loops/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
循环=1是否意味着在PostgreSQL';让我们分析输出?_Postgresql_Explain - Fatal编程技术网

循环=1是否意味着在PostgreSQL';让我们分析输出?

循环=1是否意味着在PostgreSQL';让我们分析输出?,postgresql,explain,Postgresql,Explain,我有一个缓慢的查询,我想优化。该查询与以下示例非常相似: DROP TABLE IF EXISTS test; CREATE TABLE test (i integer); DROP TABLE IF EXISTS test2; CREATE TABLE test2 (i integer); INSERT INTO test2 VALUES (1); INSERT INTO test2 VALUES (2); INSERT INTO test2 VALUES (3); INSERT INTO

我有一个缓慢的查询,我想优化。该查询与以下示例非常相似:

DROP TABLE IF EXISTS test;
CREATE TABLE test (i integer);

DROP TABLE IF EXISTS test2;
CREATE TABLE test2 (i integer);
INSERT INTO test2 VALUES (1);
INSERT INTO test2 VALUES (2);
INSERT INTO test2 VALUES (3);
INSERT INTO test2 VALUES (4);
INSERT INTO test2 VALUES (5);
INSERT INTO test2 VALUES (6);

DROP TABLE IF EXISTS test3;
CREATE TABLE test3 (i integer, c1 varchar(100), c2 varchar(100));
INSERT INTO test3 VALUES (4, 'hello', 'world');
INSERT INTO test3 VALUES (7, 'hello', 'world');
INSERT INTO test3 VALUES (2, 'world', 'hello');
INSERT INTO test3 VALUES (120, 'world', 'hello');

EXPLAIN ANALYZE INSERT INTO test 
SELECT *
FROM test2
WHERE test2.i NOT IN 
    (SELECT min(i) FROM test3 GROUP BY c1, c2 HAVING COUNT(*) > 1);
分析打印以下内容:

                                                       QUERY PLAN                                                       
------------------------------------------------------------------------------------------------------------------------
 Insert on test  (cost=15.95..55.95 rows=1200 width=4) (actual time=0.098..0.098 rows=0 loops=1)
   ->  Seq Scan on test2  (cost=15.95..55.95 rows=1200 width=4) (actual time=0.037..0.039 rows=4 loops=1)
         Filter: (NOT (hashed SubPlan 1))
         SubPlan 1
           ->  HashAggregate  (cost=13.40..15.52 rows=170 width=440) (actual time=0.017..0.018 rows=2 loops=1)
                 Filter: (count(*) > 1)
                 ->  Seq Scan on test3  (cost=0.00..11.70 rows=170 width=440) (actual time=0.001..0.001 rows=4 loops=1)
 Total runtime: 0.200 ms
(8 rows)
(真正的查询处理的数据要多得多。)


loops=1
是否意味着PostgreSQL缓存子查询的结果?注意,子查询在表
test3
上工作,因此它独立于查询的其他部分。(是否有其他方法可以确定PostgreSQL是否缓存此子查询?

否,PostgreSQL不使用子查询进行缓存。它能够具体化一些数据,但您可以在计划中看到它。只有一个对子查询调用的请求。

实际查询可能有不同的查询计划。(取决于大小、可用键/索引、调整和统计信息)。“loops=1”表示扫描只执行一次。(对于嵌套循环,必须反复重新启动内部循环)